mirror of https://github.com/perkeep/perkeep.git
gce: don't make http client twice.
doesn't really matter, but. Change-Id: I21495be1780e74464c7016979174ba722400ef1a
This commit is contained in:
parent
50f03763be
commit
082876c600
|
@ -142,8 +142,9 @@ coreos:
|
|||
}
|
||||
|
||||
tr.Token = token
|
||||
computeService, _ := compute.New(&http.Client{Transport: tr})
|
||||
storageService, _ := storage.New(&http.Client{Transport: tr})
|
||||
oauthClient := &http.Client{Transport: tr}
|
||||
computeService, _ := compute.New(oauthClient)
|
||||
storageService, _ := storage.New(oauthClient)
|
||||
|
||||
blobBucket := *proj + "-camlistore-blobs"
|
||||
configBucket := *proj + "-camlistore-config"
|
||||
|
|
Loading…
Reference in New Issue