Skip to content

Commit

Permalink
storage/appengine: fix YAML syntax
Browse files Browse the repository at this point in the history
Change-Id: Ib29820f8574a3ba09fce8079f75b933011ef2cee
Reviewed-on: https://go-review.googlesource.com/35267
Reviewed-by: Russ Cox <rsc@golang.org>
  • Loading branch information
quentinmit committed Jan 18, 2017
1 parent 6ce1bbe commit 6f1afae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions storage/appengine/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ handlers:
script: _go_app
secure: always
env_variables:
CLOUDSQL_CONNECTION_NAME: golang-org:us-central1:golang-org
CLOUDSQL_USER: root
CLOUDSQL_PASSWORD: ''
CLOUDSQL_DATABASE: perfdata
GCS_BUCKET: golang-perfdata
PERFDATA_VIEW_URL_BASE: https://perf.golang.org/search?q=uploadid:
CLOUDSQL_CONNECTION_NAME: "golang-org:us-central1:golang-org"
CLOUDSQL_USER: "root"
CLOUDSQL_PASSWORD: ""
CLOUDSQL_DATABASE: "perfdata"
GCS_BUCKET: "golang-perfdata"
PERFDATA_VIEW_URL_BASE: "https://perf.golang.org/search?q=uploadid:"

0 comments on commit 6f1afae

Please sign in to comment.