Skip to content

Commit

Permalink
Ignore bad file in endpoints lib (#479)
Browse files Browse the repository at this point in the history
Causes an error in `gcloud beta app deploy`
  • Loading branch information
saicheems authored and Jon Wayne Parrott committed Aug 25, 2016
1 parent f916eb8 commit f29f26d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions appengine/standard/endpoints-frameworks-v2/echo/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ runtime: python27
threadsafe: true
api_version: 1

skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^lib/setuptools/script \(dev\).tmpl$

handlers:
# The endpoints handler must be mapped to /_ah/api.
- url: /_ah/api/.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ runtime: python27
threadsafe: true
api_version: 1

skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^lib/setuptools/script \(dev\).tmpl$

handlers:
# The endpoints handler must be mapped to /_ah/api.
- url: /_ah/api/.*
Expand Down

0 comments on commit f29f26d

Please sign in to comment.