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
TimeoutExpired ➡️ subprocess.TimeoutExpired on this line (context copied below as well)
TimeoutExpired
subprocess.TimeoutExpired
if ver == 2: # Python 2 doesn't have timeout outs, errs = app.communicate() else: # Python 3+ # limit max time to 1e6 max_time = min(1e6,self.options.max_time) try: outs, errs = app.communicate(timeout=max_time) except TimeoutExpired: app.kill() outs, errs = app.communicate() raise Exception('Time Limit Exceeded: ' + str(max_time)) if '@error' in outs: i = outs.find('@error') apm_error = outs[i:] record_error = True
The text was updated successfully, but these errors were encountered:
No branches or pull requests
TimeoutExpired
➡️subprocess.TimeoutExpired
on this line (context copied below as well)The text was updated successfully, but these errors were encountered: