Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: tools/telemetry/telemetry/core/backends/chrome/tracing_backend.py

Issue 745493002: Profile FreeList (chromium side) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/core/backends/chrome/tracing_backend.py
diff --git a/tools/telemetry/telemetry/core/backends/chrome/tracing_backend.py b/tools/telemetry/telemetry/core/backends/chrome/tracing_backend.py
index 7e7d0ffcbd7027604ea129334becd680a700f2b4..8db2bcd507dcc1f36360e96da778caafd14c81dc 100644
--- a/tools/telemetry/telemetry/core/backends/chrome/tracing_backend.py
+++ b/tools/telemetry/telemetry/core/backends/chrome/tracing_backend.py
@@ -88,10 +88,11 @@ class TracingBackend(object):
except \
inspector_websocket.DispatchNotificationsUntilDoneTimeoutException \
as err:
- raise TracingTimeoutException(
- 'Trace data was not fully received due to timeout after %s '
- 'seconds. If the trace data is big, you may want to increase the '
- 'time out amount.' % err.elapsed_time)
+ print 'Trace data was not fully received due to timeout after %s seconds. If the trace data is big, you may want to increase the time out amount.' % err.elapsed_time
+ #raise TracingTimeoutException(
keishi 2015/01/27 09:42:29 I did this because when the trace data got large,
+ # 'Trace data was not fully received due to timeout after %s '
+ # 'seconds. If the trace data is big, you may want to increase the '
+ # 'time out amount.' % err.elapsed_time)
self._is_tracing_running = False
return self._tracing_data

Powered by Google App Engine
This is Rietveld 408576698