mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 10:51:29 +00:00
Set default test timeouts first, only then modify the required ones
This commit is contained in:
parent
f14ebac384
commit
24d30bf8b2
@ -1905,9 +1905,9 @@ func (v *azureFileVolume) DeleteVolume() {
|
||||
}
|
||||
|
||||
func (a *azureDiskDriver) GetTimeouts() *framework.TimeoutContext {
|
||||
return &framework.TimeoutContext{
|
||||
PodStart: time.Minute * 15,
|
||||
PodDelete: time.Minute * 15,
|
||||
PVDelete: time.Minute * 20,
|
||||
}
|
||||
timeouts := framework.NewTimeoutContextWithDefaults()
|
||||
timeouts.PodStart = time.Minute * 15
|
||||
timeouts.PodDelete = time.Minute * 15
|
||||
timeouts.PVDelete = time.Minute * 20
|
||||
return timeouts
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user