Add command timeout#9
Conversation
|
@rosjat @Flameeyes @sahlberg Hi guys, here is the expected change in the code. Please check and give the feedback. This PR is related to python-scsi/python-scsi#149. Use a const value "DEFAULT_TIMEOUT", to help to get the default timeout by: |
| from libc.errno cimport errno | ||
| from libc.stdlib cimport calloc, free | ||
|
|
||
| DEFAULT_TIMEOUT = 1800000 |
There was a problem hiding this comment.
this is unessesary, you can simply pass the value in the execute method this is the default if you dont provide a vaklue in the call.
timeout=1800000
Add command timeout(2nd)
|
@jackeichen I updated some workflow dependencies for github please pull master and merge it into your feature branch then push the merge commit so the PR gets the correct dependency to run the precommit |
@rosjat Another fails: |
Add command timeout