From 604f32d22b223b56d313206cf6f992f8de5733cf Mon Sep 17 00:00:00 2001 From: Christopher Wilcox Date: Mon, 28 Oct 2019 18:24:02 +0000 Subject: [PATCH] fix: don't report a gapic version for storage (#9549) As storage libraries don't have a gapic layer we shouldn't indicate a version in our headers. --- storage/google/cloud/storage/_http.py | 1 - 1 file changed, 1 deletion(-) diff --git a/storage/google/cloud/storage/_http.py b/storage/google/cloud/storage/_http.py index 91cbe14bfe49..7bd5d7673a26 100644 --- a/storage/google/cloud/storage/_http.py +++ b/storage/google/cloud/storage/_http.py @@ -34,7 +34,6 @@ class Connection(_http.JSONConnection): def __init__(self, client, client_info=None, api_endpoint=DEFAULT_API_ENDPOINT): super(Connection, self).__init__(client, client_info) self.API_BASE_URL = api_endpoint - self._client_info.gapic_version = __version__ self._client_info.client_library_version = __version__ API_VERSION = "v1"