Skip to content

Commit

Permalink
fix PR
Browse files Browse the repository at this point in the history
  • Loading branch information
tsachiherman committed Oct 9, 2024
1 parent 689d0ec commit 8f020d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion state/recorder.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (r *Recorder) Remove(_ context.Context, key []byte) error {
func (r *Recorder) GetValue(ctx context.Context, key []byte) (value []byte, err error) {
stringKey := string(key)

stateKeyVal, err = r.checkState(ctx, key)
stateKeyVal, err := r.checkState(ctx, key)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 8f020d8

Please sign in to comment.