From ea3fd88ecad973a262293b4f7086d8c8150a9fc3 Mon Sep 17 00:00:00 2001 From: Bill Feng Date: Tue, 12 Feb 2019 14:12:04 -0800 Subject: [PATCH] debug printout for testing --- tools/run_tests/python_utils/upload_rbe_results.py | 3 +++ 1 file changed, 3 insertions(+) mode change 100644 => 100755 tools/run_tests/python_utils/upload_rbe_results.py diff --git a/tools/run_tests/python_utils/upload_rbe_results.py b/tools/run_tests/python_utils/upload_rbe_results.py old mode 100644 new mode 100755 index 6ae8af7787e..fa8a2612bda --- a/tools/run_tests/python_utils/upload_rbe_results.py +++ b/tools/run_tests/python_utils/upload_rbe_results.py @@ -120,6 +120,9 @@ def _get_resultstore_data(api_key, invocation_id): # that limit, the 'nextPageToken' field is included in the request to get # subsequent data, so keep requesting until 'nextPageToken' field is omitted. while True: + print(invocation_id) + print(api_key) + print(page_token) req = urllib2.Request( url= 'https://resultstore.googleapis.com/v2/invocations/%s/targets/-/configuredTargets/-/actions?key=%s&pageToken=%s&fields=id,status_attributes,timing,test_action'