Skip to content

Commit de05f11

Browse files
authored
chore(workflows): disable CLI logs (#348)
1 parent 744a161 commit de05f11

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gradient/cli/workflows.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ def create_workflow_run(ctx, api_key, workflow_id, cluster_id, spec_path, input_
6969
workflow_run = command.execute(spec_path=spec_path, input_path=input_path, workflow_id=workflow_id, cluster_id=cluster_id)
7070
try:
7171
logId = workflow_run['status']['logId']
72-
ctx.invoke(list_logs, workflow_log_id=logId, line=1, limit=100, follow=True, api_key=api_key)
72+
# disable broken workflow-logs until we implement a functional job-specific or job-concatted log system
73+
# ctx.invoke(list_logs, workflow_log_id=logId, line=1, limit=100, follow=True, api_key=api_key)
7374
except KeyError:
7475
pass
7576

0 commit comments

Comments
 (0)