Commit 28e1d1af authored by AdoHe's avatar AdoHe

reduce component status probe timeout to 20s for quickly timeout

parent ddcee7b8
...@@ -26,7 +26,7 @@ import ( ...@@ -26,7 +26,7 @@ import (
) )
const ( const (
probeTimeOut = time.Minute probeTimeOut = 20 * time.Second
) )
// TODO: this basic interface is duplicated in N places. consolidate? // TODO: this basic interface is duplicated in N places. consolidate?
......
...@@ -58,6 +58,7 @@ import ( ...@@ -58,6 +58,7 @@ import (
const ( const (
DefaultEtcdPathPrefix = "/registry" DefaultEtcdPathPrefix = "/registry"
globalTimeout = time.Minute
) )
// StorageDestinations is a mapping from API group & resource to // StorageDestinations is a mapping from API group & resource to
...@@ -662,7 +663,7 @@ func (s *GenericAPIServer) Run(options *ServerRunOptions) { ...@@ -662,7 +663,7 @@ func (s *GenericAPIServer) Run(options *ServerRunOptions) {
if longRunningRequestCheck(req) { if longRunningRequestCheck(req) {
return nil, "" return nil, ""
} }
return time.After(time.Minute), "" return time.After(globalTimeout), ""
} }
if secureLocation != "" { if secureLocation != "" {
......
Markdown is supported
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