Force the CLI to use no_truncate for the monitor calls

This commit is contained in:
Jeff Bradberry 2019-10-10 16:57:39 -04:00
parent e672e68a02
commit cf89108edf

View File

@ -73,7 +73,7 @@ def monitor_workflow(response, session, print_stdout=True, timeout=None,
def monitor(response, session, print_stdout=True, timeout=None, interval=.25):
get = response.url.get
payload = {'order_by': 'start_line'}
payload = {'order_by': 'start_line', 'no_truncate': True}
if response.type == 'job':
events = response.related.job_events.get
else: