Fix bad import task expiration default (#21235)

/kind improvement

Signed-off-by: Yuchen Gao <yuchen.gao@zilliz.com>
pull/21511/head
Ten Thousand Leaves 2023-01-04 14:11:33 +08:00 committed by GitHub
parent f3c5924c37
commit 3f6d139ad2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ func (p *rootCoordConfig) init(base *BaseTable) {
p.ImportTaskExpiration = ParamItem{
Key: "rootCoord.importTaskExpiration",
Version: "2.2.0",
DefaultValue: "15",
DefaultValue: "900", // 15 * 60 seconds
}
p.ImportTaskExpiration.Init(base.mgr)