Merge pull request #1539 from erwinvaneyk/replace-context-import

Replace x/net/context with stdlib context
This commit is contained in:
Stephan Renatus 2019-08-31 17:52:18 +02:00 committed by GitHub
commit c854e760db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,15 +1,12 @@
package server
import (
"context"
"errors"
"fmt"
"golang.org/x/crypto/bcrypt"
// go-grpc doesn't use the standard library's context.
// https://github.com/grpc/grpc-go/issues/711
"golang.org/x/net/context"
"github.com/dexidp/dex/api"
"github.com/dexidp/dex/pkg/log"
"github.com/dexidp/dex/server/internal"