mirror of
https://github.com/go-micro/go-micro.git
synced 2025-08-04 21:42:57 +02:00
* feat: more plugins * chore(ci): split out benchmarks Attempt to resolve too many open files in ci * chore(ci): split out benchmarks * fix(ci): Attempt to resolve too many open files in ci * fix: set DefaultX for cli flag and service option * fix: restore http broker * fix: default http broker * feat: full nats profile * chore: still ugly, not ready * fix: better initialization for profiles * fix(tests): comment out flaky listen tests * fix: disable benchmarks on gha * chore: cleanup, comments * chore: add nats config source
19 lines
346 B
Go
19 lines
346 B
Go
package natsjskv
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go-micro.dev/v5/store"
|
|
)
|
|
|
|
// setStoreOption returns a function to setup a context with given value.
|
|
func setStoreOption(k, v interface{}) store.Option {
|
|
return func(o *store.Options) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
|
|
o.Context = context.WithValue(o.Context, k, v)
|
|
}
|
|
}
|