Skip to content

Commit

Permalink
Move cometd entry point from / to /comet.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpartel committed Sep 23, 2012
1 parent 860c0af commit 3cdfed9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</servlet-mapping>
<servlet-mapping>
<servlet-name>cometd</servlet-name>
<url-pattern>/</url-pattern>
<url-pattern>/comet/*</url-pattern>
</servlet-mapping>

<listener>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/fi/helsinki/cs/tmc/comet/TestUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static String getBackendKey() {
}

public static String getCometUrl() {
return "http://localhost:" + getJettyPort() + "/";
return "http://localhost:" + getJettyPort() + "/comet";
}

public static String getSynchronousPublishUrl() {
Expand Down

0 comments on commit 3cdfed9

Please sign in to comment.