Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FS-SC
AsapoWorker
Commits
cb8f8b40
Commit
cb8f8b40
authored
Apr 16, 2021
by
Tim Schoof
Browse files
Merge branch 'fix_py3_compatibility' into 'master'
Fix usage of format strings See merge request
!24
parents
94360c1e
c006c827
Pipeline
#5047
passed with stage
in 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/AsapoWorker/streamer.py
View file @
cb8f8b40
...
...
@@ -289,7 +289,7 @@ class Streamer:
else
:
self
.
_reset_delay_on_error
()
except
Exception
as
e
:
log
.
error
(
f
"Streamer fails with error
:
{
e
}
"
,
exc_info
=
True
)
log
.
error
(
"Streamer fails with error
: %s"
,
e
,
exc_info
=
True
)
raise
finally
:
self
.
_shutdown
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment