You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi All,
I added the env vars to the container:
ICINGADB_RETENTION_HISTORY-DAYS: “60”
ICINGADB_RETENTION_SLA-DAYS: “60”
there is no trace of retention in the configuration icingadb.yml :
{"database":{"database":"icingadb","host":"test","password":"test","port":5432,"type":"pgsql","user":"icingadb"},"redis":{"host":"redis-icingadb","port":6379}}
I saw that a regex is made in the entrypoint:
var myEnv = regexp.MustCompile((?s)\AICINGADB_(\w+?)_(\w+)=(.*)\z)
if i'm not mistaken it doesn't support using the "-" in the variable
Am I doing something wrong or is there an issue?
The text was updated successfully, but these errors were encountered:
Hi All,
I added the env vars to the container:
ICINGADB_RETENTION_HISTORY-DAYS: “60”
ICINGADB_RETENTION_SLA-DAYS: “60”
there is no trace of retention in the configuration icingadb.yml :
{"database":{"database":"icingadb","host":"test","password":"test","port":5432,"type":"pgsql","user":"icingadb"},"redis":{"host":"redis-icingadb","port":6379}}
I saw that a regex is made in the entrypoint:
var myEnv = regexp.MustCompile(
(?s)\AICINGADB_(\w+?)_(\w+)=(.*)\z
)if i'm not mistaken it doesn't support using the "-" in the variable
Am I doing something wrong or is there an issue?
The text was updated successfully, but these errors were encountered: