From 54dc0f88d146a83e403b3467bc9c07ac7b06452d Mon Sep 17 00:00:00 2001 From: Alex Wernle <awernle@usgs.gov> Date: Fri, 13 Jan 2023 13:30:48 -0700 Subject: [PATCH] Changed Controller's default update-limit to 1 --- geomagio/Controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geomagio/Controller.py b/geomagio/Controller.py index 8018b9f91..4469066a2 100644 --- a/geomagio/Controller.py +++ b/geomagio/Controller.py @@ -1112,7 +1112,7 @@ def parse_args(args): processing_group.add_argument( "--update-limit", type=int, - default=0, + default=1, help=""" Update mode checks for gaps and will step backwards to gap fill, if the start of the current interval is a gap, -- GitLab