deploy/gce: fix redundant context import

Change-Id: I37117d5b5641bdc057c2ece093a602be6b8e0850
This commit is contained in:
mpl 2015-12-15 16:15:53 +01:00
parent 9f7e1df32b
commit 38fec12dd5
1 changed files with 2 additions and 2 deletions

View File

@ -44,9 +44,9 @@ import (
"camlistore.org/pkg/osutil"
"camlistore.org/pkg/sorted"
"camlistore.org/pkg/sorted/leveldb"
camliCtx "golang.org/x/net/context"
"camlistore.org/third_party/code.google.com/p/xsrftoken"
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
@ -434,7 +434,7 @@ func (h *DeployHandler) serveCallback(w http.ResponseWriter, r *http.Request) {
}
go func() {
inst, err := depl.Create(camliCtx.TODO())
inst, err := depl.Create(context.TODO())
state := &creationState{
InstConf: br,
}