File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -113,3 +113,18 @@ def get_staging_dirs(
113113INSTALL_LIBRARY_FROM_SOURCE = False""" )
114114
115115s .shell .run (["nox" , "-s" , "blacken" ], hide_output = False )
116+
117+ # ----------------------------------------------------------------------------
118+ # Customize execute_query rpc to support empty app_profile_id headers
119+ # ----------------------------------------------------------------------------
120+
121+ s .replace (
122+ "google/cloud/bigtable_v2/services/bigtable/client.py" ,
123+ "if request.app_profile_id:" ,
124+ "if request.app_profile_id is not None: # temporary fix: support empty headers for btql routing"
125+ )
126+ s .replace (
127+ "google/cloud/bigtable_v2/services/bigtable/async_client.py" ,
128+ "if request.app_profile_id:" ,
129+ "if request.app_profile_id is not None: # temporary fix: support empty headers for btql routing"
130+ )
You can’t perform that action at this time.
0 commit comments