Skip to content

Commit

Permalink
fix: use DEFAULT_HOST
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed May 19, 2021
1 parent 17f934a commit 738ca21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class {{ service.name }}GrpcTransport({{ service.name }}Transport):
quota_project_id=quota_project_id,
default_scopes=cls.AUTH_SCOPES,
scopes=scopes,
default_host=host,
default_host=cls.DEFAULT_HOST,
**kwargs
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class {{ service.grpc_asyncio_transport_name }}({{ service.name }}Transport):
quota_project_id=quota_project_id,
default_scopes=cls.AUTH_SCOPES,
scopes=scopes,
default_host=host,
default_host=cls.DEFAULT_HOST,
**kwargs
)

Expand Down

0 comments on commit 738ca21

Please sign in to comment.