Skip to content

Commit

Permalink
Release/2020.1.0 chore/update tomcat to 8 5 51 (#1521)
Browse files Browse the repository at this point in the history
* Update Apache Tomcat packages to v8.5.51 and #1520 Disable required secret

Co-authored-by: WhiteSource Renovate <[email protected]>
  • Loading branch information
cbeach47 and renovate-bot authored Mar 4, 2020
1 parent 5ec82b6 commit 1f98ef3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ public void startup() {
if (ajpPort != -1) {
Connector connector = new Connector(useBio ? BIO_AJP : "AJP/1.3");
connector.setPort(ajpPort);
connector.setAttribute("requiredSecret", false);
connector.setAttribute("tomcatAuthentication", false);
connector.setAttribute("packetSize", "65536");
setConnector(connector);
Expand Down
2 changes: 1 addition & 1 deletion Source/Server/equellaserver/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ unmanagedClasspath in Runtime += (baseDirectory in LocalProject("learningedge_co

val jacksonVersion = "2.10.2"
val axis2Version = "1.6.2"
val TomcatVersion = "8.5.50"
val TomcatVersion = "8.5.51"
val SwaggerVersion = "1.5.24"
val RestEasyVersion = "3.5.0.Final"
val simpledbaVersion = "0.1.9"
Expand Down

0 comments on commit 1f98ef3

Please sign in to comment.