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
nomad-lab
nomad-FAIR
Commits
2bdefe75
Commit
2bdefe75
authored
Mar 31, 2020
by
Markus Scheidgen
Browse files
Fixed issue with non matching reprocessed calcs.
parent
5cd0e4da
Changes
1
Hide whitespace changes
Inline
Side-by-side
nomad/processing/data.py
View file @
2bdefe75
...
...
@@ -256,9 +256,10 @@ class Calc(Proc):
return
if
parser
is
None
:
self
.
get_logger
().
error
(
'no parser matches during re-process, use the old parser'
)
self
.
errors
=
[
'no matching parser found during re-processing'
]
if
self
.
parser
!=
parser
.
name
:
self
.
get_logger
().
warn
(
'no parser matches during re-process, use the old parser'
)
self
.
warnings
=
[
'no matching parser found during re-processing'
]
elif
self
.
parser
!=
parser
.
name
:
self
.
parser
=
parser
.
name
logger
.
info
(
'different parser matches during re-process, use new parser'
,
...
...
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