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
c006c827
Commit
c006c827
authored
Apr 16, 2021
by
Tim Schoof
Browse files
Fix usage of format strings
parent
db85b614
Pipeline
#5043
passed with stage
in 55 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/AsapoWorker/streamer.py
View file @
c006c827
...
...
@@ -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