Skip to content
Snippets Groups Projects
Commit 1c8f21cb authored by David Hammer's avatar David Hammer
Browse files

Allow TrainRatioTracker to see the same train again

parent 85ee451d
No related branches found
No related tags found
2 merge requests!59Interface CrystFEL with Karabo and allow automatic parameter tunning with rcrystfel,!53Train picker arbiter kernel
......@@ -447,7 +447,8 @@ class TrainRatioTracker:
self._train_id_queue.clear()
def update(self, train_id):
if self._train_id_queue and (last_seen := self._train_id_queue[-1]) >= train_id:
# allows same train ID multiple times
if self._train_id_queue and (last_seen := self._train_id_queue[-1]) > train_id:
raise NonMonotonicTrainIdWarning(
"New train ID not greater than last train ID seen! "
f"New: {train_id}, previous: {last_seen}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment