Disable uploading log breakdown numbers

    - This is causing issues and preventing any results from being uploaded
TODO:
    - Create another file for this, or look into other methods of
      uploading

Change-Id: I3fb39f6af6a4e6c45c448610c8054f74031ace34
diff --git a/TestON/tests/USECASE/SegmentRouting/SRStaging/dependencies/SRStagingTest.py b/TestON/tests/USECASE/SegmentRouting/SRStaging/dependencies/SRStagingTest.py
index 978a41e..f079bc5 100644
--- a/TestON/tests/USECASE/SegmentRouting/SRStaging/dependencies/SRStagingTest.py
+++ b/TestON/tests/USECASE/SegmentRouting/SRStaging/dependencies/SRStagingTest.py
@@ -298,7 +298,8 @@
             for oldKey in resultsDict.keys():
                 newKey = "%s-%s" % ( shortDesc, oldKey )
                 componentBreakdownDict[ newKey ] = resultsDict[ oldKey ]
-            main.downtimeResults.update( componentBreakdownDict )
+            # We need another way of uploading, this doesn't have guarenteed order and # of fields
+            # main.downtimeResults.update( componentBreakdownDict )
             main.log.debug( json.dumps( main.downtimeResults, sort_keys=True, indent=4 ) )
         except Exception:
             main.log.exception( "Error while breaking down logs" )