Skip to content

Commit

Permalink
add missing comma
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis Couvreur <[email protected]>
  • Loading branch information
acouvreur authored Nov 30, 2024
1 parent 64471b7 commit 56cf7f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/http/routes/strategies.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func (s *ServeStrategy) ServeDynamic(c *gin.Context) {
func (s *ServeStrategy) ServeBlocking(c *gin.Context) {
request := models.BlockingRequest{
Timeout: s.StrategyConfig.Blocking.DefaultTimeout,
RefreshFrequency: s.StrategyConfig.Blocking.DefaultRefreshFrequency
RefreshFrequency: s.StrategyConfig.Blocking.DefaultRefreshFrequency,
}

if err := c.ShouldBind(&request); err != nil {
Expand Down

0 comments on commit 56cf7f4

Please sign in to comment.