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

Unified Diff: web/inc/logdog-stream-view/model.ts

Issue 2989313002: [logdog] Stream view explicitly cancels request. (Closed)
Patch Set: Created 3 years, 4 months 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
« no previous file with comments | « web/inc/logdog-stream-view/fetcher.ts ('k') | web/inc/logdog-stream-view/query.ts » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: web/inc/logdog-stream-view/model.ts
diff --git a/web/inc/logdog-stream-view/model.ts b/web/inc/logdog-stream-view/model.ts
index b88ac86bcee35ae29b42c57dd9c42431d06bd3fd..26477275e801c0cc72d731b07ec9d27662442074 100644
--- a/web/inc/logdog-stream-view/model.ts
+++ b/web/inc/logdog-stream-view/model.ts
@@ -283,8 +283,9 @@ namespace LogDog {
};
while (true) {
+ let op = new luci.Operation();
try {
- let results = await LogDog.queryAll(this.client, query, 100);
+ let results = await LogDog.queryAll(op, this.client, query, 100);
return results.map(qr => qr.stream);
} catch (err) {
err = resolveErr(err);
« no previous file with comments | « web/inc/logdog-stream-view/fetcher.ts ('k') | web/inc/logdog-stream-view/query.ts » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698