Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appengine-java8/images/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ detailed instructions.

Using the [Google Cloud SDK](https://cloud.google.com/sdk/) create a bucket

$ gsutil mb YOUR-PROJECT-ID.appspot.com
$ gcloud storage buckets create YOUR-PROJECT-ID.appspot.com
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The gcloud storage buckets create command requires the bucket name to be provided as a URI, which must be prefixed with gs://. The current command will fail without this prefix.

Suggested change
$ gcloud storage buckets create YOUR-PROJECT-ID.appspot.com
$ gcloud storage buckets create gs://YOUR-PROJECT-ID.appspot.com

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gurusai-voleti Do we need the gs:// prefix here?


* Edit `src/main/java/com/example/appengine/images/ImageServlet.java` and set your `bucket` name.

Expand Down