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
Describe the bug
When job_poller.py attempts to activate jobs, if a ZeebeBackPressureError is raised, no exception text will be logged.
ZeebeBackPressureError
Current log text is Exception: . Retrying in 5 seconds...
Exception: . Retrying in 5 seconds...
To Reproduce Steps to reproduce the behavior:
try
poll_once
try: raise ZeebeBackPressureError()
Expected behavior Failed to activate jobs from the gateway. Exception: ZeebeBackPressureError(). Retrying in 5 seconds...
Failed to activate jobs from the gateway. Exception: ZeebeBackPressureError(). Retrying in 5 seconds...
This can be achieved by changing
logger.warning(f"Failed to activate jobs from the gateway. Exception: {str(error)}. Retrying in 5 seconds...")
to
logger.warning(f"Failed to activate jobs from the gateway. Exception: {repr(error)}. Retrying in 5 seconds...")
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
Fixed in the next pre-release. Thanks for bringing this to my attention
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When job_poller.py attempts to activate jobs, if a
ZeebeBackPressureError
is raised, no exception text will be logged.Current log text is
Exception: . Retrying in 5 seconds...
To Reproduce
Steps to reproduce the behavior:
try
statement forpoll_once
toExpected behavior
Failed to activate jobs from the gateway. Exception: ZeebeBackPressureError(). Retrying in 5 seconds...
This can be achieved by changing
logger.warning(f"Failed to activate jobs from the gateway. Exception: {str(error)}. Retrying in 5 seconds...")
to
logger.warning(f"Failed to activate jobs from the gateway. Exception: {repr(error)}. Retrying in 5 seconds...")
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: