From c93ba284dff8c0d7c5ee232f619f754e4c71ec38 Mon Sep 17 00:00:00 2001 From: Pengyu Hou <3771747+better365@users.noreply.github.com> Date: Mon, 26 Feb 2024 17:53:33 -0800 Subject: [PATCH] Update run.py (#696) add missing space Signed-off-by: Pengyu Hou <3771747+better365@users.noreply.github.com> --- api/py/ai/chronon/repo/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/py/ai/chronon/repo/run.py b/api/py/ai/chronon/repo/run.py index 88036b095..7ee1a34ce 100755 --- a/api/py/ai/chronon/repo/run.py +++ b/api/py/ai/chronon/repo/run.py @@ -506,7 +506,7 @@ def _gen_final_args(self, start_ds=None, end_ds=None): online_jar=self.online_jar, online_class=self.online_class, ) - override_start_partition_arg = "--start-partition-override=" + start_ds if start_ds else "" + override_start_partition_arg = " --start-partition-override=" + start_ds if start_ds else "" final_args = base_args + " " + str(self.args) + override_start_partition_arg return final_args