Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
9bf7ca52
Commit
9bf7ca52
authored
6 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
SW-465
: Replaced print statement by logging. Added more logging about email notification.
parent
b90eb0dc
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CEP/Pipeline/framework/lofarpipe/support/loggingdecorators.py
+9
-6
9 additions, 6 deletions
...Pipeline/framework/lofarpipe/support/loggingdecorators.py
with
9 additions
and
6 deletions
CEP/Pipeline/framework/lofarpipe/support/loggingdecorators.py
+
9
−
6
View file @
9bf7ca52
...
...
@@ -176,6 +176,8 @@ def _send_mail_notification(calling_object, message):
"
sos@astron.nl
"
]
calling_object
.
logger
.
info
(
"
creating email notification...
"
)
# get the active stack
active_stack_data
=
'
???
'
try
:
...
...
@@ -187,8 +189,8 @@ def _send_mail_notification(calling_object, message):
active_stack_data
=
simplyfied_pipeline_xml
.
toprettyxml
(
encoding
=
'
ascii
'
)
except
:
pass
except
Exception
as
e
:
calling_object
.
logger
.
error
(
e
)
# get the Obsid and pipeline name add to subjecy title
obsid
=
'
???
'
...
...
@@ -196,8 +198,8 @@ def _send_mail_notification(calling_object, message):
try
:
obsid
=
os
.
path
.
basename
(
calling_object
.
__file__
)
jobname
=
calling_object
.
inputs
[
'
job_name
'
]
except
:
pass
except
Exception
as
e
:
calling_object
.
logger
.
error
(
e
)
subject
=
"
Failed pipeline run {0}: {1}
"
.
format
(
obsid
,
jobname
)
...
...
@@ -210,11 +212,12 @@ def _send_mail_notification(calling_object, message):
pconfig
=
PipelineEmailConfig
()
error_sender
=
pconfig
[
'
error-sender
'
]
# provoke_exception if key missing
except
Exception
as
e
:
print
e
# raise Exception("loggingdecorators.py: Could not find the pipeline email configuration file: %s" % (e) )
calling_object
.
logger
.
error
(
e
)
error_sender
=
"
noreply@lofar.eu
"
calling_object
.
logger
.
warn
(
"
Could not find sender address. Using default: %s
"
,
error_sender
)
for
entry
in
mail_list
:
calling_object
.
logger
.
info
(
"
sending email notification
'
%s
'
to %s
"
,
subject
,
entry
)
_mail_msg_to
(
error_sender
,
entry
,
subject
,
msg
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment