Skip to content

Commit

Permalink
update to work with dom96/httpbeast#53
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheecour committed Jul 15, 2021
1 parent 016f339 commit 266b97b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jester.nim
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ proc serve*(
proc (req: httpbeast.Request): Future[void] =
{.gcsafe.}:
result = handleRequest(jes, req),
httpbeast.initSettings(self.settings.port, self.settings.bindAddr, reusePort = true, failOnExistingPort = not self.settings.reusePort)
httpbeast.initSettings(self.settings.port, self.settings.bindAddr, failOnExistingPort = not self.settings.reusePort)
)
else:
self.httpServer = newAsyncHttpServer(reusePort = self.settings.reusePort)
Expand Down

0 comments on commit 266b97b

Please sign in to comment.