🔧 refactor(channel): add validation for CHANNEL_TEST_FREQUENCY in automatic tests
This commit is contained in:
@@ -354,6 +354,10 @@ func TestAllChannels(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func AutomaticallyTestChannels(frequency int) {
|
func AutomaticallyTestChannels(frequency int) {
|
||||||
|
if frequency <= 0 {
|
||||||
|
common.SysLog("CHANNEL_TEST_FREQUENCY is not set or invalid, skipping automatic channel test")
|
||||||
|
return
|
||||||
|
}
|
||||||
for {
|
for {
|
||||||
time.Sleep(time.Duration(frequency) * time.Minute)
|
time.Sleep(time.Duration(frequency) * time.Minute)
|
||||||
common.SysLog("testing all channels")
|
common.SysLog("testing all channels")
|
||||||
|
|||||||
4
main.go
4
main.go
@@ -168,11 +168,11 @@ func InitResources() error {
|
|||||||
common.SysLog("No .env file found, using default environment variables. If needed, please create a .env file and set the relevant variables.")
|
common.SysLog("No .env file found, using default environment variables. If needed, please create a .env file and set the relevant variables.")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
common.SetupLogger()
|
||||||
|
|
||||||
// 加载环境变量
|
// 加载环境变量
|
||||||
common.InitEnv()
|
common.InitEnv()
|
||||||
|
|
||||||
common.SetupLogger()
|
|
||||||
|
|
||||||
// Initialize model settings
|
// Initialize model settings
|
||||||
ratio_setting.InitRatioSettings()
|
ratio_setting.InitRatioSettings()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user