Skip to content

Commit

Permalink
jetty 10 - fix feeder
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb committed Sep 2, 2023
1 parent fc31ddb commit 09d5a12
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/emissary/pickup/WorkSpace.java
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,9 @@ protected void startJetty() {
if (this.feedCommand.isSslEnabled()) {
args.add("--ssl");
}
if (!this.feedCommand.isSniHostCheckEnabled()) {
args.add("--disableSniHostCheck");
}
try {
// To ensure the feed command starts correctly, depends on a node-{feedCommand.getPort}.cfg file
ServerCommand cmd = BaseCommand.parse(ServerCommand.class, args);
Expand Down

0 comments on commit 09d5a12

Please sign in to comment.