Skip to content

Commit 283fcf4

Browse files
authored
Merge pull request #3033 from dhermes/no-more-connection-modules
Renaming all remaining connection.py modules as _http.py.
2 parents e1dc710 + 3cab185 commit 283fcf4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

packages/google-cloud-runtimeconfig/google/cloud/runtimeconfig/connection.py renamed to packages/google-cloud-runtimeconfig/google/cloud/runtimeconfig/_http.py

File renamed without changes.

packages/google-cloud-runtimeconfig/google/cloud/runtimeconfig/client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717

1818
from google.cloud.client import ClientWithProject
19-
from google.cloud.runtimeconfig.connection import Connection
19+
20+
from google.cloud.runtimeconfig._http import Connection
2021
from google.cloud.runtimeconfig.config import Config
2122

2223

packages/google-cloud-runtimeconfig/unit_tests/test_connection.py renamed to packages/google-cloud-runtimeconfig/unit_tests/test__http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class TestConnection(unittest.TestCase):
1919

2020
@staticmethod
2121
def _get_target_class():
22-
from google.cloud.runtimeconfig.connection import Connection
22+
from google.cloud.runtimeconfig._http import Connection
2323

2424
return Connection
2525

0 commit comments

Comments
 (0)