Skip to content

Commit

Permalink
Forms
Browse files Browse the repository at this point in the history
  • Loading branch information
noboomu committed Mar 9, 2021
1 parent 85843b2 commit 289e3a3
Show file tree
Hide file tree
Showing 16 changed files with 2,878 additions and 1,231 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Proteus Changelog.
## Unreleased
### No issue

**Improve startup time.**


[85843b22c7e4cb6](https://github.com/noboomu/proteus/commit/85843b22c7e4cb6) Joshua Bauer *2021-02-02 18:41:29*

**Allow overriding of initial modules. Updated mime types.**


Expand Down
5 changes: 5 additions & 0 deletions proteus-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Proteus Changelog.
## Unreleased
### No issue

**Improve startup time.**


[85843b22c7e4cb6](https://github.com/noboomu/proteus/commit/85843b22c7e4cb6) Joshua Bauer *2021-02-02 18:41:29*

**Allow overriding of initial modules. Updated mime types.**


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ public void buildServer()
.setServerOption(UndertowOptions.ALWAYS_SET_KEEP_ALIVE, config.getBoolean("undertow.server.alwaysSetKeepAlive"))
.setServerOption(UndertowOptions.RECORD_REQUEST_START_TIME, config.getBoolean("undertow.server.recordRequestStartTime"))
.setServerOption(UndertowOptions.MAX_ENTITY_SIZE, config.getBytes("undertow.server.maxEntitySize"))
.setServerOption(UndertowOptions.MAX_BUFFERED_REQUEST_SIZE, config.getInt("undertow.server.maxBufferedRequestSize"))
.setHandler(handler);

if (config.getBoolean("undertow.ssl.enabled"))
Expand Down
Loading

0 comments on commit 289e3a3

Please sign in to comment.