Attention is currently required from: osmith.
Patch set 1:Code-Review +1
1 comment:
File _testenv/data/scripts/wait_for_port.py:
if "sctp" not in sys.modules:
print("python module sctp is not installed, sleeping 3s instead...")
time.sleep(3)
Can you just use `try-catch` here instead?
```suggestion
try:
import sctp
except ImportError:
print("python module sctp is not installed, sleeping 3s instead...")
time.sleep(3)
return
```
To view, visit change 41420. To unsubscribe, or for help writing mail filters, visit settings.