We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3ca39b commit 488dbceCopy full SHA for 488dbce
1 file changed
python/examples/ingestion_with_yaml_config/main.py
@@ -20,7 +20,7 @@
20
21
load_dotenv()
22
23
- apikey = os.getenv("SIFT_LOCAL_API_KEY")
+ apikey = os.getenv("SIFT_API_KEY")
24
25
if apikey is None:
26
raise Exception("Missing 'SIFT_API_KEY' environment variable.")
@@ -34,7 +34,7 @@
34
telemetry_config = nostromos_lv_426()
35
36
# Create a gRPC transport channel configured specifically for the Sift API
37
- sift_channel_config = SiftChannelConfig(uri=base_uri, apikey=apikey, use_ssl=False)
+ sift_channel_config = SiftChannelConfig(uri=base_uri, apikey=apikey)
38
39
with use_sift_channel(sift_channel_config) as channel:
40
# Create ingestion service using the telemetry config we loaded in
0 commit comments