delete some unused const

This commit is contained in:
qingsenLi 2019-02-10 17:23:15 +08:00
parent 7b203c6809
commit 012076d324
2 changed files with 3 additions and 6 deletions

View File

@ -50,7 +50,6 @@ const (
postTestConditionMonitoringPeriod = 1 * time.Minute postTestConditionMonitoringPeriod = 1 * time.Minute
evictionPollInterval = 2 * time.Second evictionPollInterval = 2 * time.Second
pressureDissapearTimeout = 1 * time.Minute pressureDissapearTimeout = 1 * time.Minute
longPodDeletionTimeout = 10 * time.Minute
// pressure conditions often surface after evictions because the kubelet only updates // pressure conditions often surface after evictions because the kubelet only updates
// node conditions periodically. // node conditions periodically.
// we wait this period after evictions to make sure that we wait out this delay // we wait this period after evictions to make sure that we wait out this delay

View File

@ -38,11 +38,9 @@ const (
maxPerPodContainer = 1 maxPerPodContainer = 1
maxTotalContainers = -1 maxTotalContainers = -1
defaultRuntimeRequestTimeoutDuration = 1 * time.Minute garbageCollectDuration = 3 * time.Minute
defaultImagePullProgressDeadline = 1 * time.Minute setupDuration = 10 * time.Minute
garbageCollectDuration = 3 * time.Minute runtimePollInterval = 10 * time.Second
setupDuration = 10 * time.Minute
runtimePollInterval = 10 * time.Second
) )
type testPodSpec struct { type testPodSpec struct {