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

Unified Diff: scheduler/appengine/engine/tq/tq.go

Issue 2981143002: Add 'dsset' structure. (Closed)
Patch Set: Created 3 years, 5 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
Index: scheduler/appengine/engine/tq/tq.go
diff --git a/scheduler/appengine/engine/tq/tq.go b/scheduler/appengine/engine/tq/tq.go
index 3c14543350e2e04c244b871b98729c7ce8fdb703..5153a32299b3ae4e8151de21602305b3675c42d5 100644
--- a/scheduler/appengine/engine/tq/tq.go
+++ b/scheduler/appengine/engine/tq/tq.go
@@ -358,7 +358,7 @@ func (d *Dispatcher) processHTTPRequest(c *router.Context) {
case transient.Tag.In(err):
httpReply(c, false, 500, "Transient error: %s", err)
default:
- httpReply(c, false, 200, "Fatal error: %s", err) // return 200 to stop retries
+ httpReply(c, false, 500, "Fatal error: %s", err) // return 200 to stop retries
tandrii(chromium) 2017/07/21 13:42:52 btw, why this?
Vadim Sh. 2017/07/24 00:30:18 Forgot to undo before sending the CL :) Shouldn't
}
}

Powered by Google App Engine
This is Rietveld 408576698