Skip to content

Commit

Permalink
Reverted unnecessary change
Browse files Browse the repository at this point in the history
  • Loading branch information
ddl-joyce-zhao committed May 23, 2024
1 parent 3fd86f5 commit 11c3a98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions domino_data/data_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def __attrs_post_init__(self):
proxy_host = os.getenv(DOMINO_DATASOURCE_PROXY_HOST, "")

client_source = os.getenv(DOMINO_CLIENT_SOURCE, "Python")
run_id = os.getenv(DOMINO_RUN_ID)
run_id = os.getenv(DOMINO_RUN_ID, "")

logger.info(
"initializing datasource client with hosts",
Expand Down Expand Up @@ -624,7 +624,7 @@ def __attrs_post_init__(self):
def _set_proxy(self):
client_source = os.getenv(DOMINO_CLIENT_SOURCE, "Python")
flight_host = os.getenv(DOMINO_DATASOURCE_PROXY_FLIGHT_HOST)
run_id = os.getenv(DOMINO_RUN_ID)
run_id = os.getenv(DOMINO_RUN_ID, "")
self.proxy = flight.FlightClient(
flight_host,
middleware=[
Expand Down

0 comments on commit 11c3a98

Please sign in to comment.