Skip to content

Commit

Permalink
fix: scheduler typo
Browse files Browse the repository at this point in the history
Signed-off-by: Gaius <[email protected]>
  • Loading branch information
gaius-qi committed Jan 12, 2022
1 parent 33c4a43 commit 3405fe9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/en/deployment/configuration/scheduler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ scheduler:
# dynamic data configuration
dynConfig:
# dynamic config refresh interval
refreshInterval: 5 * time.Minute
refreshInterval: 1m

# scheduler host configuration
host:
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-CN/deployment/configuration/scheduler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ scheduler:
# 动态数据配置
dynConfig:
# 动态数据刷新间隔时间
refreshInterval: 5 * time.Minute
refreshInterval: 1m

# 实例主机信息
host:
Expand Down
2 changes: 1 addition & 1 deletion scheduler/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func New() *Config {
},
},
DynConfig: &DynConfig{
RefreshInterval: 5 * time.Minute,
RefreshInterval: 1 * time.Minute,
},
Host: &HostConfig{},
Manager: &ManagerConfig{
Expand Down

0 comments on commit 3405fe9

Please sign in to comment.