Skip to content

Commit

Permalink
Merge pull request apache#71 from mesosphere/fix-spark-log
Browse files Browse the repository at this point in the history
Show spark log even after the task has completed
  • Loading branch information
mgummelt authored Nov 3, 2016
2 parents bf6decf + ebb2418 commit 77af5e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/dcos_spark/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def kill_job(args):

def log_job(args):
dcos_client = mesos.DCOSClient()
task = mesos.get_master(dcos_client).task(args['<submissionId>'])
task = mesos.get_master(dcos_client).task(args['<submissionId>'], True)
log_file = args.get('--file', "stdout")
if log_file is None:
log_file = "stdout"
Expand Down

0 comments on commit 77af5e8

Please sign in to comment.