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 df88d85 commit 64ae24fCopy full SHA for 64ae24f
2 files changed
ms_database_connector/core/db_connection.py
@@ -28,11 +28,11 @@ def initialize_db_connection(
28
None: Returns None on error rather than raising exceptions.
29
"""
30
31
- _logger.info("Get Influx DB password from environment variable 'RUNTIME_INFLUX_PW'")
+ _logger.info("Get Influx DB password from environment variable 'INFLUXDB_V2_TOKEN'")
32
password = os.getenv("INFLUXDB_V2_TOKEN")
33
if not password:
34
_logger.warning(
35
- "No Influx DB password provided in environment variable 'RUNTIME_INFLUX_PW'. Database interactions disabled."
+ "No Influx DB password provided in environment variable 'INFLUXDB_V2_TOKEN'. Database interactions disabled."
36
)
37
return None
38
0 commit comments