@@ -312,9 +312,11 @@ def query_jobs(body, **kwargs):
312
312
offset = page_tokens .decode_offset (query .page_token )
313
313
page = page_from_offset (offset , query_page_size )
314
314
315
+ has_auth = headers is not None
316
+
315
317
response = requests .post (
316
318
_get_base_url () + '/query' ,
317
- json = cromwell_query_params (query , page , query_page_size ),
319
+ json = cromwell_query_params (query , page , query_page_size , has_auth ),
318
320
auth = auth ,
319
321
headers = headers )
320
322
@@ -356,7 +358,7 @@ def page_from_offset(offset, page_size):
356
358
return 1 + (offset / page_size )
357
359
358
360
359
- def cromwell_query_params (query , page , page_size ):
361
+ def cromwell_query_params (query , page , page_size , has_auth ):
360
362
query_params = []
361
363
if query .start :
362
364
start = datetime .strftime (query .start , '%Y-%m-%dT%H:%M:%S.%fZ' )
@@ -385,7 +387,13 @@ def cromwell_query_params(query, page, page_size):
385
387
query_params .append ({'page' : str (page )})
386
388
query_params .append ({'additionalQueryResultFields' : 'parentWorkflowId' })
387
389
query_params .append ({'additionalQueryResultFields' : 'labels' })
388
- query_params .append ({'includeSubworkflows' : 'false' })
390
+
391
+ # If the query request is passing along an auth header, that means the API
392
+ # is sending requests to a CromIAM, not a Cromwell. CromIAM can't retrieve
393
+ # subworkflows, so it's not necessary to the query (and slows things down
394
+ # significantly)
395
+ if not has_auth :
396
+ query_params .append ({'includeSubworkflows' : 'false' })
389
397
if query .extensions and query .extensions .hide_archived :
390
398
query_params .append ({'excludeLabelAnd' : 'flag:archive' })
391
399
return query_params
0 commit comments