Skip to content

Commit

Permalink
GEODE-2194: Fix pulse webapp context
Browse files Browse the repository at this point in the history
* this closes apache#336
  • Loading branch information
jaredjstewart authored and jinmeiliao committed Jan 12, 2017
1 parent 9081128 commit a4f38f3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion geode-pulse/src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/pulse/*</url-pattern>
<url-pattern>/</url-pattern>
<!-- We expect Pulse to receive requests to URLs like /pulse/pulseVersion, but Jetty will match /pulse/
to the web app context for this WAR and only pass /pulseVersion into the servlet configured with this <url-pattern/>
-->
</servlet-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
Expand Down

0 comments on commit a4f38f3

Please sign in to comment.