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

Unified Diff: scheduler/appengine/ui/job.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/job.go
diff --git a/scheduler/appengine/ui/job.go b/scheduler/appengine/ui/job.go
index 91e1d902c720598d65582fe5694661a23102d358..416469bc037f06871fd772c750b61d3e32654ddd 100644
--- a/scheduler/appengine/ui/job.go
+++ b/scheduler/appengine/ui/job.go
@@ -37,7 +37,7 @@ func jobPage(ctx *router.Context) {
cursor := r.URL.Query().Get("c")
// Grab the job from the datastore.
- job, err := config(c).Engine.GetJob(c, projectID+"/"+jobName)
+ job, err := config(c).Engine.GetJobRA(c, projectID+"/"+jobName)
if err != nil {
panic(err)
}

Powered by Google App Engine
This is Rietveld 408576698