Skip to content

Commit e66fc4b

Browse files
committed
RESTACK_ENGINE_API_ADDRESS
1 parent 83cec6e commit e66fc4b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

production_demo/src/client.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@
1010
engine_id = os.getenv("RESTACK_ENGINE_ID")
1111
address = os.getenv("RESTACK_ENGINE_ADDRESS")
1212
api_key = os.getenv("RESTACK_ENGINE_API_KEY")
13+
api_address = os.getenv("RESTACK_ENGINE_API_ADDRESS")
1314

1415
connection_options = CloudConnectionOptions(
1516
engine_id=engine_id,
1617
address=address,
17-
api_key=api_key
18+
api_key=api_key,
19+
api_address=api_address
1820
)
19-
client = Restack(connection_options)
21+
client = Restack(connection_options)

0 commit comments

Comments
 (0)