Skip to content

Commit

Permalink
Fix the issue reported in wso2/streaming-integrator-tooling#9
Browse files Browse the repository at this point in the history
  • Loading branch information
AnuGayan committed Aug 13, 2019
1 parent 34c3ded commit 3c85707
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected void setMicroservicesServer(MicroservicesServer microservicesServer) {
e.getMessage(), e);
}
String startingURL = entry.getValue().getScheme() + "://" + hostname + ":" + entry.getValue()
.getPort() + "/template-server";
.getPort() + "/template-editor";
logger.info("Template Editor Started on : " + startingURL);
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
service = Microservice.class,
immediate = true
)
@Path("/template-server")
@Path("/template-editor")
public class TemplatesEditorMicroservice implements Microservice {
private static final Logger log = LoggerFactory.getLogger(TemplatesEditorMicroservice.class);
private static final String FILE_SEPARATOR = "file.separator";
Expand Down

0 comments on commit 3c85707

Please sign in to comment.