Skip to content
Snippets Groups Projects
Commit 1acdfe20 authored by Levecque Etienne's avatar Levecque Etienne
Browse files

fix: correct a bug in search_antecedent

parent d193b3a5
Branches
Tags
No related merge requests found
...@@ -123,7 +123,7 @@ class Block: ...@@ -123,7 +123,7 @@ class Block:
send_logs(verbose, shared_dict, task_id, max_iter, max_iter, True) send_logs(verbose, shared_dict, task_id, max_iter, max_iter, True)
self.iterations[pipeline] = iter_counter + 1 self.iterations[pipeline] = iter_counter + 1
if iter_counter < max_iter: if iter_counter + 1 < max_iter:
self.antecedents[pipeline] = False self.antecedents[pipeline] = False
self.status[pipeline] = -1 self.status[pipeline] = -1
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment