Skip to content

Commit 77af5e8

Browse files
authoredNov 3, 2016
Merge pull request apache#71 from mesosphere/fix-spark-log
Show spark log even after the task has completed
2 parents bf6decf + ebb2418 commit 77af5e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎cli/dcos_spark/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def kill_job(args):
6464

6565
def log_job(args):
6666
dcos_client = mesos.DCOSClient()
67-
task = mesos.get_master(dcos_client).task(args['<submissionId>'])
67+
task = mesos.get_master(dcos_client).task(args['<submissionId>'], True)
6868
log_file = args.get('--file', "stdout")
6969
if log_file is None:
7070
log_file = "stdout"

0 commit comments

Comments
 (0)
Please sign in to comment.