| Index: infra/bots/recipes/upload_dm_results.py
 | 
| diff --git a/infra/bots/recipes/upload_dm_results.py b/infra/bots/recipes/upload_dm_results.py
 | 
| index 49dc2ac505adcde1f921bd49461878f08af1483f..6d1b0eacd0016007709c69aae4e91a17b927e8a7 100644
 | 
| --- a/infra/bots/recipes/upload_dm_results.py
 | 
| +++ b/infra/bots/recipes/upload_dm_results.py
 | 
| @@ -42,11 +42,8 @@ def RunSteps(api):
 | 
|  
 | 
|    results_dir = api.path['cwd'].join('dm')
 | 
|  
 | 
| -  # Validate the JSON file.
 | 
| -  json_file = results_dir.join(DM_JSON)
 | 
| -  api.json.read('validate dm.json', json_file)
 | 
| -
 | 
|    # Move dm.json and verbose.log to their own directory.
 | 
| +  json_file = results_dir.join(DM_JSON)
 | 
|    log_file = results_dir.join(VERBOSE_LOG)
 | 
|    tmp_dir = api.path['cwd'].join('tmp_upload')
 | 
|    api.shutil.makedirs('tmp dir', tmp_dir, infra_step=True)
 | 
| 
 |