We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83cec6e commit e66fc4bCopy full SHA for e66fc4b
production_demo/src/client.py
@@ -10,10 +10,12 @@
10
engine_id = os.getenv("RESTACK_ENGINE_ID")
11
address = os.getenv("RESTACK_ENGINE_ADDRESS")
12
api_key = os.getenv("RESTACK_ENGINE_API_KEY")
13
+api_address = os.getenv("RESTACK_ENGINE_API_ADDRESS")
14
15
connection_options = CloudConnectionOptions(
16
engine_id=engine_id,
17
address=address,
- api_key=api_key
18
+ api_key=api_key,
19
+ api_address=api_address
20
)
-client = Restack(connection_options)
21
+client = Restack(connection_options)
0 commit comments