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
If this endpoint is called once with any valid parameter it will return the correct result.
However if many or all of these options are called in parallel requests then sometimes the results get mixed up and for example I can receive the result of avg_waiting_time_day when the request was with the parameter total_chats_day
I also tried to replace the individual steps so that instead of an asynchronous http.post step each step would only return a unique value like :
getTotalChatsDayResults:
return: 'A'
next: end
getTotalChatsMonthResults:
return: 'B'
next: end
...
This seems to happen less frequently like this, but I still observe the same thing happening:
When its OK:
When its not OK:
The text was updated successfully, but these errors were encountered:
Important
In case of running multiple simultaneous threads on Ruuter, responses to requests get mixed up at some point
Acceptance Criteria
Discussed in #133
Originally posted by gdrui February 3, 2023
Given an endpoint that fetches different data from Resql based on the provided parameters:
If this endpoint is called once with any valid parameter it will return the correct result.
However if many or all of these options are called in parallel requests then sometimes the results get mixed up and for example I can receive the result of
avg_waiting_time_day
when the request was with the parametertotal_chats_day
I also tried to replace the individual steps so that instead of an asynchronous http.post step each step would only return a unique value like :
This seems to happen less frequently like this, but I still observe the same thing happening:
When its OK:
When its not OK:
The text was updated successfully, but these errors were encountered: