Skip to content
Snippets Groups Projects
Commit 5c8747cf authored by Cai Zhang 【张财】's avatar Cai Zhang 【张财】 Committed by yefu.chen
Browse files

Make proxy retry time more frequently


Signed-off-by: default avatarcai.zhang <cai.zhang@zilliz.com>
parent 346b0a95
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ func (node *NodeImpl) waitForServiceReady(service Component, serviceName string)
return nil
}
// wait for 10 seconds
err := retry.Retry(10, time.Second, checkFunc)
err := retry.Retry(10, time.Millisecond*200, checkFunc)
if err != nil {
errMsg := fmt.Sprintf("ProxyNode wait for %s ready failed", serviceName)
return errors.New(errMsg)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment