Skip to content

Commit

Permalink
use max of 1 and x not min
Browse files Browse the repository at this point in the history
  • Loading branch information
mina1460 committed Jan 29, 2024
1 parent 5c57872 commit a1d33fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ func NewService(ctx context.Context, p Params) (*Service, error) {
Config: nil,
Db: &s.jimm.Database,
DbUrl: p.DSN,
MaxAttempts: 5, // because this is a unit test
MaxAttempts: 5,
OfgaClient: s.jimm.OpenFGAClient,
}
s.jimm.River, err = jimm.NewRiver(ctx, riverArgs)
Expand Down

0 comments on commit a1d33fa

Please sign in to comment.