-
-
Notifications
You must be signed in to change notification settings - Fork 76
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
grpc-replay: failed to decode dump: invalid character 'ÿ' looking for beginning of value #123
Comments
Sounds like the JSON got corrupted somehow. Are you able to share a file that fails with this error? If not, how are you saving the file to be replayed? Perhaps we can work out if some extra unexpected data is ending up in there |
I did that grpc-dump --port=8082 > start_core1.dump I tried to replay only two lines of it and it blocked at the first request: |
Ah I see the problem:
This isn't valid JSON because the quotes aren't being escaped inside the string. It should be more like:
Really weird that that's happened. I'll have a look at what could be causing it within |
For future, are you able to provide the line number with the error? |
I have been able to dump successfully my requests, but when came the time to replay it I got that error:
failed to decode dump: invalid character 'ÿ' looking for beginning of value
I'm running on Windows 10.
The text was updated successfully, but these errors were encountered: