Skip to content

Commit

Permalink
fix(http): use gin without default configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
acouvreur committed Oct 4, 2022
1 parent 70d93a0 commit 0045bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/sablier.go
Expand Up @@ -120,7 +120,7 @@ func initPersistentStorage(config config.Storage, store tinykv.KV[OnDemandReques
}

func initServer(conf config.Server, scaler scaler.Scaler, store tinykv.KV[OnDemandRequestState]) error {
r := gin.Default()
r := gin.New()

r.Use(middleware.Logger(log.New()), gin.Recovery())

Expand Down

0 comments on commit 0045bcb

Please sign in to comment.