Skip to content

Commit

Permalink
fixes to resources
Browse files Browse the repository at this point in the history
  • Loading branch information
smadappa committed Nov 29, 2016
1 parent ddf1790 commit e2dceeb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Expand Up @@ -59,7 +59,6 @@ protected void configureServlets() {
initParams.put(PackagesResourceConfig.PROPERTY_PACKAGES, "com.netflix.evcache.service.resources");
filter("/*").through(NFFilter.class, initParams);
filter("/healthcheck", "/status").through(NFFilter.class, initParams);
// serve("/*").with(GuiceContainer.class, initParams);
serve("/Status", "/status").with(BaseStatusPage.class);
serve("/healthcheck", "/Healthcheck").with(BaseHealthCheckServlet.class);
serve("/*").with(GuiceContainer.class, initParams);
Expand Down
Expand Up @@ -25,6 +25,7 @@
/**
* Created by senugula on 3/22/16.
*/

@Singleton
@Path("/evcrest/v1.0")
public class EVCacheRESTService {
Expand Down

0 comments on commit e2dceeb

Please sign in to comment.