You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have installed funnel 0.11 in a docker image and started it using a config file that connects it to a mongodb.
The same mongodb is connected to a different funnel instance v 0.10.
When I try to retrieve the information for a task in 0.11 I get
curl -X GET http://localhost:8000/v1/tasks/cp7h9jv000kibeg69rc0
{"error":"task not found: taskID: cp7h9jv000kibeg69rc0"}
curl -X GET http://localhost:8000/tasks/cp7h9jv000kibeg69rc0
{"error":"task not found: taskID: cp7h9jv000kibeg69rc0"}
with funnel 0.10
curl -X GET http://localhost:8003/v1/tasks/cp7h9jv000kibeg69rc0
{
"id": "cp7h9jv000kibeg69rc0",
"state": "COMPLETE"
}
curl -X GET http://localhost:8003/tasks/cp7h9jv000kibeg69rc0
Not Found
Furthermore
curl -X GET http://localhost:8003/v1/tasks
Returns a list of tasks for 0.10
but with 0.11 returns an empty list and in the logs of the server I get the following:
server received: /tes.TaskService/ListTasks
request {
}
time 2024-05-25T12:00:29Z
server responding: /tes.TaskService/ListTasks
err error decoding key logs.0.outputs.0.sizebytes: cannot decode 64-bit integer into a string type
resp <nil>
time 2024-05-25T12:06:15Z
I can confirm that in the backend mongodb a query to retrieve the tasks was sent in both cases.
Thanks in advance for your help
The text was updated successfully, but these errors were encountered:
I have installed funnel 0.11 in a docker image and started it using a config file that connects it to a mongodb.
The same mongodb is connected to a different funnel instance v 0.10.
When I try to retrieve the information for a task in 0.11 I get
with funnel 0.10
Furthermore
Returns a list of tasks for 0.10
but with 0.11 returns an empty list and in the logs of the server I get the following:
I can confirm that in the backend mongodb a query to retrieve the tasks was sent in both cases.
Thanks in advance for your help
The text was updated successfully, but these errors were encountered: