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
Almost all SD2E actors have the following boilerplate code in their reactor.py
reactor.py
mes = AttrDict(rx.context.message_dict) if mes == {}: try: jsonmsg = json.loads(rx.context.raw_message) mes = jsonmsg except Exception: pass
The rationale for this is that agavepy.actors#get_context fails to deserialize some JSON messages due to valid characters in the message that cannot be parsed by ast.literal_eval(text) (see https://github.com/TACC/agavepy/blob/master/agavepy/actors.py#L65)
agavepy.actors#get_context
ast.literal_eval(text)
The text was updated successfully, but these errors were encountered:
After conferring with @joestubbs we will improve agavepy.actors#get_context rather than bolting this behavior on to the SDK.
Sorry, something went wrong.
No branches or pull requests
Almost all SD2E actors have the following boilerplate code in their
reactor.py
The rationale for this is that
agavepy.actors#get_context
fails to deserialize some JSON messages due to valid characters in the message that cannot be parsed byast.literal_eval(text)
(see https://github.com/TACC/agavepy/blob/master/agavepy/actors.py#L65)The text was updated successfully, but these errors were encountered: