Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 846cf74

Browse files
authored
Update region tags (GoogleCloudPlatform#4574)
## Description Fixes #<ISSUE-NUMBER> Note: It's a good idea to open an issue first for discussion. ## Checklist - [ ] I have followed [Sample Guidelines from AUTHORING_GUIDE.MD](https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/AUTHORING_GUIDE.md) - [ ] README is updated to include [all relevant information](https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/AUTHORING_GUIDE.md#readme-file) - [ ] **Tests** pass: `nox -s py-3.6` (see [Test Environment Setup](https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/AUTHORING_GUIDE.md#test-environment-setup)) - [ ] **Lint** pass: `nox -s lint` (see [Test Environment Setup](https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/AUTHORING_GUIDE.md#test-environment-setup)) - [ ] These samples need a new **API enabled** in testing projects to pass (let us know which ones) - [ ] These samples need a new/updated **env vars** in testing projects set to pass (let us know which ones) - [ ] Please **merge** this PR for me once it is approved. - [ ] This sample adds a new sample directory, and I updated the [CODEOWNERS file](https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/.github/CODEOWNERS) with the codeowners for this sample
1 parent d4a1263 commit 846cf74

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

run/helloworld/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# [START run_hello_dockerfile]
15+
# [START run_helloworld_dockerfile]
1616

1717
# Use the official lightweight Python image.
1818
# https://hub.docker.com/_/python
@@ -35,4 +35,4 @@ RUN pip install Flask gunicorn
3535
# to be equal to the cores available.
3636
CMD exec gunicorn --bind :$PORT --workers 1 --threads 8 --timeout 0 main:app
3737

38-
# [END run_hello_dockerfile]
38+
# [END run_helloworld_dockerfile]

run/helloworld/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# [START run_hello_service]
15+
# [START run_helloworld_service]
1616
import os
1717

1818
from flask import Flask
@@ -28,4 +28,4 @@ def hello_world():
2828

2929
if __name__ == "__main__":
3030
app.run(debug=True, host='0.0.0.0', port=int(os.environ.get('PORT', 8080)))
31-
# [END run_hello_service]
31+
# [END run_helloworld_service]

0 commit comments

Comments
 (0)