Merge remote-tracking branch 'rem/v3' into v3
This commit is contained in:
commit
06f01c9c91
@ -1,20 +0,0 @@
|
|||||||
name: "autoapprove"
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request_target:
|
|
||||||
types: [assigned, opened, synchronize, reopened]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
pull-requests: write
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
autoapprove:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: approve
|
|
||||||
uses: hmarr/auto-approve-action@v3
|
|
||||||
if: github.actor == 'vtolstov' || github.actor == 'dependabot[bot]'
|
|
||||||
id: approve
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
@ -1,21 +0,0 @@
|
|||||||
name: "automerge"
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request_target:
|
|
||||||
types: [assigned, opened, synchronize, reopened]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
pull-requests: write
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
automerge:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: github.actor == 'vtolstov'
|
|
||||||
steps:
|
|
||||||
- name: merge
|
|
||||||
id: merge
|
|
||||||
run: gh pr merge --auto --merge "$PR_URL"
|
|
||||||
env:
|
|
||||||
PR_URL: ${{github.event.pull_request.html_url}}
|
|
||||||
GITHUB_TOKEN: ${{secrets.TOKEN}}
|
|
26
redis.go
26
redis.go
@ -98,11 +98,7 @@ func (r *Store) Connect(ctx context.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (r *Store) Init(opts ...store.Option) error {
|
func (r *Store) Init(opts ...store.Option) error {
|
||||||
for _, o := range opts {
|
err := r.configure(opts...)
|
||||||
o(&r.opts)
|
|
||||||
}
|
|
||||||
|
|
||||||
err := r.configure()
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -675,11 +671,15 @@ func NewStore(opts ...store.Option) *Store {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *Store) configure() error {
|
func (r *Store) configure(opts ...store.Option) error {
|
||||||
if r.cli != nil && r.opts.Context == nil {
|
if r.cli != nil && len(opts) == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for _, o := range opts {
|
||||||
|
o(&r.opts)
|
||||||
|
}
|
||||||
|
|
||||||
universalOptions := DefaultUniversalOptions
|
universalOptions := DefaultUniversalOptions
|
||||||
|
|
||||||
if r.opts.Context != nil {
|
if r.opts.Context != nil {
|
||||||
@ -708,8 +708,8 @@ func (r *Store) configure() error {
|
|||||||
universalOptions.ConnMaxIdleTime = o.ConnMaxIdleTime
|
universalOptions.ConnMaxIdleTime = o.ConnMaxIdleTime
|
||||||
universalOptions.ConnMaxLifetime = o.ConnMaxLifetime
|
universalOptions.ConnMaxLifetime = o.ConnMaxLifetime
|
||||||
|
|
||||||
if r.opts.TLSConfig != nil {
|
if o.TLSConfig != nil {
|
||||||
universalOptions.TLSConfig = r.opts.TLSConfig
|
universalOptions.TLSConfig = o.TLSConfig
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -742,15 +742,15 @@ func (r *Store) configure() error {
|
|||||||
universalOptions.MaxIdleConns = o.MaxIdleConns
|
universalOptions.MaxIdleConns = o.MaxIdleConns
|
||||||
universalOptions.ConnMaxIdleTime = o.ConnMaxIdleTime
|
universalOptions.ConnMaxIdleTime = o.ConnMaxIdleTime
|
||||||
universalOptions.ConnMaxLifetime = o.ConnMaxLifetime
|
universalOptions.ConnMaxLifetime = o.ConnMaxLifetime
|
||||||
if r.opts.TLSConfig != nil {
|
if o.TLSConfig != nil {
|
||||||
universalOptions.TLSConfig = r.opts.TLSConfig
|
universalOptions.TLSConfig = o.TLSConfig
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if o, ok := r.opts.Context.Value(universalConfigKey{}).(*goredis.UniversalOptions); ok {
|
if o, ok := r.opts.Context.Value(universalConfigKey{}).(*goredis.UniversalOptions); ok {
|
||||||
universalOptions = o
|
universalOptions = o
|
||||||
if r.opts.TLSConfig != nil {
|
if o.TLSConfig != nil {
|
||||||
universalOptions.TLSConfig = r.opts.TLSConfig
|
universalOptions.TLSConfig = o.TLSConfig
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user