Skip to content

Commit bce06df

Browse files
committed
Fix logs function to handle None value for since parameter
1 parent 4e0b936 commit bce06df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apolo-cli/src/apolo_cli/apps.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ async def logs(
289289
cluster_name=cluster,
290290
org_name=org,
291291
project_name=project,
292-
since=_parse_date(since),
292+
since=_parse_date(since) if since else None,
293293
timestamps=timestamps,
294294
separator=separator,
295295
debug=root.verbosity >= 2,

0 commit comments

Comments
 (0)