Skip to content

Commit

Permalink
Feat: Fix throttle middleware panic (#214)
Browse files Browse the repository at this point in the history
* Feat: Fix throttle middleware error

* Upgrade v1.12.4
  • Loading branch information
hwbrzzl authored Jun 26, 2023
1 parent 6ba0471 commit 54ce17e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions http/service_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ func (database *ServiceProvider) Boot(app foundation.Application) {
ConfigFacade = app.MakeConfig()
CacheFacade = app.MakeCache()
LogFacade = app.MakeLog()
RateLimiterFacade = app.MakeRateLimiter()
ValidationFacade = app.MakeValidation()

database.registerCommands(app)
Expand Down
2 changes: 1 addition & 1 deletion support/constant.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package support

const Version string = "v1.12.3"
const Version string = "v1.12.4"

const (
EnvRuntime = "runtime"
Expand Down

0 comments on commit 54ce17e

Please sign in to comment.