Resolve SW-816
2 unresolved threads
2 unresolved threads
Closes SW-816
Merge request reports
Activity
added 3 commits
-
ae39ede4...0d25c133 - 2 commits from branch
LOFAR-Release-4_0
- 4132d7d4 - SW-816: Merge remote-tracking branch 'origin/LOFAR-Release-4_0' into SW-816
-
ae39ede4...0d25c133 - 2 commits from branch
For the reviewer: the actual bugfix is only this little snippet: !57 (diffs)
The rest is just improving on testability and maintenance.
added 7 commits
-
4132d7d4...1e830d81 - 6 commits from branch
LOFAR-Release-4_0
- 38b3eb49 - SW-816: Merge remote-tracking branch 'origin/LOFAR-Release-4_0' into SW-816
-
4132d7d4...1e830d81 - 6 commits from branch
166 168 :param input_dict: Serialized version of a Specification and any predecessors. 167 169 """ 168 170 self.otdb_id = input_dict["otdb_id"] 169 self.mom_id = input_dict["mom_id"] 171 self.mom_id = input_dict.get("mom_id") added 6 commits
- 84638baf - SW-816: improved string representation
- f790ec38 - SW-816: fixed disconnect
- 4525fc32 - SW-816: implemented truncate trigger which cascades a truncate on...
- 1fab7b8c - SW-816: major speedup of test database setup and preparations for each test
- 8a3f87a3 - SW-816: use actual id's instead of assuming they always start at 1
- 3bccd791 - SW-816: reused radb connections. Testing showed that opening/closing db...
Toggle commit listadded 3 commits
-
3bccd791...b21b0bf5 - 2 commits from branch
LOFAR-Release-4_0
- 820e11aa - SW-816: Merge remote-tracking branch 'origin/LOFAR-Release-4_0' into SW-816
-
3bccd791...b21b0bf5 - 2 commits from branch
I've build RA_Services and LTAIngest and ran all tests: https://support.astron.nl/jenkins/view/LOFAR%20Subsystems/view/Subsystems%20builds/job/Subsystems_CentOS7/2966/ https://support.astron.nl/jenkins/view/LOFAR%20Subsystems/view/Subsystems%20builds/job/Subsystems_CentOS7/2967/
Two green lights! I'll deploy RA_Services on the test system and:
- schedule some observations/pipelines
- submit a trigger
Upon success, I'll merge.
deployed RA_services on test scu199: https://support.astron.nl/jenkins/view/LOFAR%20Install/job/Systemwide%20LOFAR%20Deployment/235/console
mentioned in commit 4462b56f
36 36 class ObservationControlHandler(ServiceMessageHandler): 37 37 def __init__(self): 38 38 super(ObservationControlHandler, self).__init__() 39 self.register_service_method("AbortObservation", self.abort_observation)
Please register or sign in to reply