-
Notifications
You must be signed in to change notification settings - Fork 219
chore: Adjust build for combined SDK #1003
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
Conversation
|
Some changes in manual files were required to pass pylint check due to upgrade from Python 3.6 to 3.8 (they modify rules with every new version) |
| @@ -1,28 +0,0 @@ | |||
| # A GitHub action that notifies the developer | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This workflow is triggered only on default branch, so there is no point in keeping it here
| 'client_id': client_id, | ||
| 'client_secret': client_secret, | ||
| }, | ||
| timeout=10, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you have to add timeout here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was required by pylint to specify timeout to every http request, otherwise it can last forever. It is consider as a good practice
No description provided.