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
abfea475
Commit
abfea475
authored
6 years ago
by
Auke Klazema
Browse files
Options
Downloads
Patches
Plain Diff
SW-609
: Fixed a test with code changes on spec error don't update times
parent
7c7cdb6b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
SAS/ResourceAssignment/Common/lib/specification.py
+1
-1
1 addition, 1 deletion
SAS/ResourceAssignment/Common/lib/specification.py
SAS/ResourceAssignment/TaskPrescheduler/taskprescheduler.py
+4
-0
4 additions, 0 deletions
SAS/ResourceAssignment/TaskPrescheduler/taskprescheduler.py
with
5 additions
and
1 deletion
SAS/ResourceAssignment/Common/lib/specification.py
+
1
−
1
View file @
abfea475
...
...
@@ -642,7 +642,7 @@ class Specification:
self
.
logger
.
exception
(
e
)
self
.
logger
.
error
(
"
Problem parsing specification for otdb_id=%s
"
,
otdb_id
)
self
.
set_status
(
"
error
"
)
#Not catching an exception here
return
None
return
[]
self
.
logger
.
info
(
'
Reading values from OTDB for task %i was successful
'
%
otdb_id
)
self
.
logger
.
info
(
'
type: %s subtype: %s starttime: %s endtime: %s duration: %s mom_id: %s cluster: %s predecessors: %s
'
,
self
.
type
,
self
.
subtype
,
self
.
starttime
,
self
.
endtime
,
self
.
duration
,
self
.
mom_id
,
self
.
cluster
,
predecessor_ids
)
...
...
This diff is collapsed.
Click to expand it.
SAS/ResourceAssignment/TaskPrescheduler/taskprescheduler.py
+
4
−
0
View file @
abfea475
...
...
@@ -147,6 +147,10 @@ class TaskPrescheduler(OTDBBusListener):
spec
.
set_status
(
status
)
spec
.
read_from_OTDB_with_predecessors
(
treeId
,
"
otdb
"
,
{})
#Now checks predecessors, which theoretically could cause race contitions
spec
.
read_from_mom
()
if
spec
.
status
==
"
error
"
:
return
spec
.
update_start_end_times
()
spec
.
insert_into_radb
()
# if spec.validate()?
...
...
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