Skip to content
Snippets Groups Projects
Commit ccc6a9cb authored by Craig Tiller's avatar Craig Tiller Committed by GitHub
Browse files

Merge pull request #8587 from ctiller/new_fields2

Fix some typos
parents 6937c8f3 77fbc1ca
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ def _flatten_result_inplace(scenario_result): ...@@ -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 @@ ...@@ -210,7 +210,7 @@
"mode": "NULLABLE" "mode": "NULLABLE"
}, },
{ {
"name": "request_results", "name": "requestResults",
"type": "STRING", "type": "STRING",
"mode": "NULLABLE" "mode": "NULLABLE"
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment