You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running with --output localterm, the ipc_timeout variable is undefined.
~/pyrasite-develop# pyrasite --output localterm --ipc-timeout 5 1 dump_stacks.py
Traceback (most recent call last):
File "/usr/local/bin/pyrasite", line 11, in <module>
sys.exit(main())
File "/usr/local/lib/python2.7/site-packages/pyrasite/main.py", line 137, in main
timeout=ipc_timeout)
NameError: global name 'ipc_timeout' is not defined
The reference on line 137 needs to be args.ipc_timeout, not simply ipc_timeout.
The text was updated successfully, but these errors were encountered:
When running with
--output localterm
, theipc_timeout
variable is undefined.The reference on line 137 needs to be
args.ipc_timeout
, not simplyipc_timeout
.The text was updated successfully, but these errors were encountered: