Merge pull request #8587 from ctiller/new_fields2

Fix some typos
reviewable/pr8532/r3
Craig Tiller 8 years ago committed by GitHub
commit ccc6a9cbf2
  1. 2
      tools/run_tests/performance/bq_upload_result.py
  2. 2
      tools/run_tests/performance/scenario_result_schema.json

@ -120,7 +120,7 @@ def _flatten_result_inplace(scenario_result):
scenario_result['serverCores'] = json.dumps(scenario_result['serverCores']) scenario_result['serverCores'] = json.dumps(scenario_result['serverCores'])
scenario_result['clientSuccess'] = json.dumps(scenario_result['clientSuccess']) scenario_result['clientSuccess'] = json.dumps(scenario_result['clientSuccess'])
scenario_result['serverSuccess'] = json.dumps(scenario_result['serverSuccess']) scenario_result['serverSuccess'] = json.dumps(scenario_result['serverSuccess'])
scenario_result['requestResults'] = json.dumps(scenario_result['requestResults']) scenario_result['requestResults'] = json.dumps(scenario_result.get('requestResults', []))
def _populate_metadata_inplace(scenario_result): def _populate_metadata_inplace(scenario_result):

@ -210,7 +210,7 @@
"mode": "NULLABLE" "mode": "NULLABLE"
}, },
{ {
"name": "request_results", "name": "requestResults",
"type": "STRING", "type": "STRING",
"mode": "NULLABLE" "mode": "NULLABLE"
} }

Loading…
Cancel
Save