golang format tools (#1099)

Produced via:
  `gofmt -s -w $(find -path './vendor' -prune -o -path './third_party' -prune -o -type f -name '*.go' -print)`
  `goimports -w $(find -name '*.go' | grep -v vendor | grep -v third_party)`
/assign n3wscott
/cc n3wscott
This commit is contained in:
Matt Moore 2020-02-17 09:56:10 -08:00 committed by GitHub
parent c9cd4f2956
commit 1cc7b71529
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ package reconciler
import (
"testing"
"k8s.io/api/core/v1"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

View File

@ -38,7 +38,7 @@ var (
// only when a job forgot or failed to release Boskos, which shouldn't
// happen that often. Using this can avoid keeping "heartbeat" which is
// almost not doable for Go
defaultWaitDuration = 2*time.Hour
defaultWaitDuration = 2 * time.Hour
)
// Operation defines actions for handling GKE resources