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 606c62d commit a899669Copy full SHA for a899669
tests/e2e/utils/adapt_ols_config.py
@@ -67,7 +67,14 @@ def update_ols_configmap() -> None:
67
# Set INFO level to avoid redacted logs
68
olsconfig["ols_config"]["logging_config"]["lib_log_level"] = "INFO"
69
70
- # Add user data collector config for e2e tests
+ # Configure user data collection for OLS service (to store data)
71
+ olsconfig["ols_config"]["user_data_collection"] = {
72
+ "feedback_disabled": False,
73
+ "feedback_storage": "/app-root/ols-user-data/feedback",
74
+ "transcripts_disabled": False,
75
+ "transcripts_storage": "/app-root/ols-user-data/transcripts",
76
+ }
77
+
78
olsconfig["user_data_collector_config"] = {
79
"data_storage": "/app-root/ols-user-data",
80
"log_level": "debug",
0 commit comments