env name fix
All checks were successful
/ Make image (push) Successful in 37s

This commit is contained in:
nquidox 2026-04-06 12:15:32 +03:00
parent 047b61c9a4
commit af1710c3fe

View file

@ -50,8 +50,8 @@ func NewConfig() Config {
},
TasksSource: TasksSource{
Host: getEnv("TASK_API_HOST", "127.0.0.1"),
Port: getEnv("TASK_API_PORT", "61000"),
Host: getEnv("TASK_SOURCE_HOST", "127.0.0.1"),
Port: getEnv("TASK_SOURCE_PORT", "61000"),
Timeout: getEnvSeconds("TASK_SOURCE_TIMEOUT_SECONDS", 60),
},