We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The headers are retrieved from the connection as a string. But they are expected to be a dictionary. Getting the error:
ERROR - Failed during execution with error: Failed to create Ray JobSubmissionClient: headers must be a dict, got <class 'str'>
The fix is to use json.loads to convert the header to dict before assigning them to the headers attribute. (hooks.py line 92)
The text was updated successfully, but these errors were encountered:
Hey @tahanakabi ,
Thanks for reporting this issue! It's a good catch. Would you be interested in submitting a PR with a fix?
Guide for contributions is available here
Sorry, something went wrong.
No branches or pull requests
The headers are retrieved from the connection as a string. But they are expected to be a dictionary.
Getting the error:
The fix is to use json.loads to convert the header to dict before assigning them to the headers attribute. (hooks.py line 92)
The text was updated successfully, but these errors were encountered: