We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99b499a commit 23d2053Copy full SHA for 23d2053
dump.py
@@ -36,7 +36,11 @@ def _dump_all_workflows(viewer: str, output: Path) -> None:
36
:return: None
37
"""
38
total_elements = _get_total_elements(viewer)
39
+ logger.info("Total number of workflows: %s", total_elements)
40
pages = ceil(total_elements / MAX_PAGE_SIZE)
41
+ logger.info(
42
+ "Will create %s separate dump files of up to %s workflows each.",
43
+ pages, MAX_PAGE_SIZE)
44
for page in range(0, pages):
45
_dump_workflows(viewer, output, page, MAX_PAGE_SIZE)
46
0 commit comments