mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
Sync in latest go-plugin
This commit is contained in:
parent
982c1aa972
commit
bb45c06371
19
vendor/github.com/hashicorp/go-plugin/server.go
generated
vendored
19
vendor/github.com/hashicorp/go-plugin/server.go
generated
vendored
@ -66,6 +66,10 @@ type ServeConfig struct {
|
|||||||
// the gRPC health checking service. This is not optional since go-plugin
|
// the gRPC health checking service. This is not optional since go-plugin
|
||||||
// relies on this to implement Ping().
|
// relies on this to implement Ping().
|
||||||
GRPCServer func([]grpc.ServerOption) *grpc.Server
|
GRPCServer func([]grpc.ServerOption) *grpc.Server
|
||||||
|
|
||||||
|
// Logger is used to pass a logger into the server. If none is provided the
|
||||||
|
// server will create a default logger.
|
||||||
|
Logger hclog.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
// Protocol returns the protocol that this server should speak.
|
// Protocol returns the protocol that this server should speak.
|
||||||
@ -106,12 +110,15 @@ func Serve(opts *ServeConfig) {
|
|||||||
// Logging goes to the original stderr
|
// Logging goes to the original stderr
|
||||||
log.SetOutput(os.Stderr)
|
log.SetOutput(os.Stderr)
|
||||||
|
|
||||||
// internal logger to os.Stderr
|
logger := opts.Logger
|
||||||
logger := hclog.New(&hclog.LoggerOptions{
|
if logger == nil {
|
||||||
Level: hclog.Trace,
|
// internal logger to os.Stderr
|
||||||
Output: os.Stderr,
|
logger = hclog.New(&hclog.LoggerOptions{
|
||||||
JSONFormat: true,
|
Level: hclog.Trace,
|
||||||
})
|
Output: os.Stderr,
|
||||||
|
JSONFormat: true,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// Create our new stdout, stderr files. These will override our built-in
|
// Create our new stdout, stderr files. These will override our built-in
|
||||||
// stdout/stderr so that it works across the stream boundary.
|
// stdout/stderr so that it works across the stream boundary.
|
||||||
|
6
vendor/vendor.json
vendored
6
vendor/vendor.json
vendored
@ -1021,10 +1021,10 @@
|
|||||||
"revisionTime": "2017-06-22T06:09:55Z"
|
"revisionTime": "2017-06-22T06:09:55Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"checksumSHA1": "tFCvjFzOo0x4P2SEzj8UazxTMug=",
|
"checksumSHA1": "QSH/KjHRLljyZDXMmkd9fdqbr3I=",
|
||||||
"path": "github.com/hashicorp/go-plugin",
|
"path": "github.com/hashicorp/go-plugin",
|
||||||
"revision": "e2fbc6864d18d3c37b6cde4297ec9fca266d28f1",
|
"revision": "e37881a3f1a07fce82b3d99ce0342a72e53386bc",
|
||||||
"revisionTime": "2017-10-29T21:44:25Z"
|
"revisionTime": "2018-01-11T18:21:30Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"checksumSHA1": "yzoWV7yrS/TvOrKy5ZrdUjsYaOA=",
|
"checksumSHA1": "yzoWV7yrS/TvOrKy5ZrdUjsYaOA=",
|
||||||
|
Loading…
Reference in New Issue
Block a user