forked from mirror/redis
Change hooks to be LIFO
This commit is contained in:
parent
f82e4988ec
commit
5aaa6c6207
12
redis.go
12
redis.go
|
@ -77,9 +77,9 @@ func (hs hooks) beforeProcess(ctx context.Context, cmd Cmder) (context.Context,
|
||||||
|
|
||||||
func (hs hooks) afterProcess(ctx context.Context, cmd Cmder) error {
|
func (hs hooks) afterProcess(ctx context.Context, cmd Cmder) error {
|
||||||
var firstErr error
|
var firstErr error
|
||||||
for _, h := range hs.hooks {
|
for i := len(hs.hooks) - 1; i >= 0; i-- {
|
||||||
err := h.AfterProcess(ctx, cmd)
|
h := hs.hooks[i]
|
||||||
if err != nil && firstErr == nil {
|
if err := h.AfterProcess(ctx, cmd); err != nil && firstErr == nil {
|
||||||
firstErr = err
|
firstErr = err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -118,9 +118,9 @@ func (hs hooks) beforeProcessPipeline(ctx context.Context, cmds []Cmder) (contex
|
||||||
|
|
||||||
func (hs hooks) afterProcessPipeline(ctx context.Context, cmds []Cmder) error {
|
func (hs hooks) afterProcessPipeline(ctx context.Context, cmds []Cmder) error {
|
||||||
var firstErr error
|
var firstErr error
|
||||||
for _, h := range hs.hooks {
|
for i := len(hs.hooks) - 1; i >= 0; i-- {
|
||||||
err := h.AfterProcessPipeline(ctx, cmds)
|
h := hs.hooks[i]
|
||||||
if err != nil && firstErr == nil {
|
if err := h.AfterProcessPipeline(ctx, cmds); err != nil && firstErr == nil {
|
||||||
firstErr = err
|
firstErr = err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue