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

Unified Diff: scheduler/appengine/ui/invocation.go

Issue 2986033003: [scheduler]: ACLs phase 1 - per Job ACL specification and enforcement. (Closed)
Patch Set: [WIP] ACLs into engine public API. 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
Index: scheduler/appengine/ui/invocation.go
diff --git a/scheduler/appengine/ui/invocation.go b/scheduler/appengine/ui/invocation.go
index ab2ea7a78a6ef86afb75aa6a2c9adcccc1fe86b3..bb42c11c5f862176f975fe7f90f73d6aac82d406 100644
--- a/scheduler/appengine/ui/invocation.go
+++ b/scheduler/appengine/ui/invocation.go
@@ -52,7 +52,7 @@ func invocationPage(c *router.Context) {
wg.Add(1)
go func() {
defer wg.Done()
- job, err2 = eng.GetJob(c.Context, projectID+"/"+jobName)
+ job, err2 = eng.GetJobRA(c.Context, projectID+"/"+jobName)
}()
wg.Wait()

Powered by Google App Engine
This is Rietveld 408576698