Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bis-aria
ariaec
Commits
d816e53f
Commit
d816e53f
authored
Jun 27, 2019
by
Fabrice ALLAIN
Browse files
bug fix
parent
990419e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/aria/core/JobManager.py
View file @
d816e53f
...
...
@@ -247,7 +247,9 @@ class Job(Thread, AriaBaseClass):
try
:
[
os
.
unlink
(
foo
)
for
foo
in
(
filename
,
checkfile
)]
except
Exception
as
e
:
self
.
logger
.
exception
(
e
)
# TODO: same
# self.logger.exception(e)
pass
# start job
...
...
@@ -273,7 +275,9 @@ class Job(Thread, AriaBaseClass):
stderr
=
subprocess
.
PIPE
)
(
out
,
err
)
=
process
.
communicate
()
except
Exception
as
e
:
self
.
logger
.
exception
(
e
)
# TODO : make it functionnal
# self.logger.exception(e)
pass
self
.
message
(
out
.
replace
(
"
\n
"
,
""
)
+
" (%s)"
%
job_desc
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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