-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Received message larger than max (5406604 vs. 4194304) #1815
Comments
We use gRPC to communicate between Python and Node lands. Messages have max limit and if that exceeded, keyword will fail. Unfortunately there is not way to increase the max limit of the message. I guess we could cut the json and make it fit to the maximum message size. But in that case, we would not return valid json and are in dancer to loose something important information. But I agree that how keyword works now, is not correct either and it should be fixed, in one way or another. |
@allcontributors please add @JaPyR for bugs. |
Any updates on this guys? Is there any alternative approach for this |
Currently there is not, I tried once to solve the problem, but could not get the node side working. |
I'm facing the same issue |
Describe the bug
I have a test case where I need to wait for request end before further interacting with page so my code look like:
If I understand correctly size of the response (big json, around 5 megabytes and I am not interested in it's content) is the reason why keyword
Wait For
fails with message "Received message larger than max (5406604 vs. 4194304)".The text was updated successfully, but these errors were encountered: