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
MAX_TRIES is set at the top of trader_agent.py as a global variable.
Yet we have a much better place for this: TraderConfig.
Move MAX_TRIES into TraderConfig. It can be hardcoded, we don't need an envvar.
The text was updated successfully, but these errors were encountered:
#157 - [trader] Move max tries to trader agent config class (#159)
75db394
Successfully merging a pull request may close this issue.
Background / motivation
MAX_TRIES is set at the top of trader_agent.py as a global variable.
Yet we have a much better place for this: TraderConfig.
TODO
Move MAX_TRIES into TraderConfig. It can be hardcoded, we don't need an envvar.
The text was updated successfully, but these errors were encountered: