-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.6.0-HF29, 5.8.0-HF04, 5.9.1
-
Component/s: Nuxeo Drive
Indeed, setting max_loops=1 will actually perform 2 loops due to:
if (max_loops is not None and loop_count > max_loops):
which should in fact be replaced by:
if (max_loops is not None and loop_count >= max_loops):