Skip to content
This repository has been archived by the owner on Apr 4, 2021. It is now read-only.

Commit

Permalink
FALCON-2050 Configure jetty parent classloader to be prioritized over…
Browse files Browse the repository at this point in the history
… webapp classloader

Enabled the parent classloader to have priority over the webapp classloader

Author: Venkat Ranganathan <venkat@hortonworks.com>

Reviewers: "Sandeep Samudrala <sandysmdl@gmail.com>"

Closes #211 from vrangan/0.10
  • Loading branch information
Venkat Ranganathan authored and bvellanki committed Jul 1, 2016
1 parent 68b7296 commit 2e986a3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public EmbeddedServer(int port, String path) {
server.addConnector(connector);

WebAppContext application = new WebAppContext(path, "/");
application.setParentLoaderPriority(true);
server.setHandler(application);
}

Expand Down

0 comments on commit 2e986a3

Please sign in to comment.