Skip to content

Commit

Permalink
Merge pull request #1723 from AnuGayan/tooling-fix
Browse files Browse the repository at this point in the history
Fix the issue which template editor runtime won't start in streaming integrator tooling
  • Loading branch information
ramindu90 authored Aug 15, 2019
2 parents eb46def + 3c85707 commit 49ca587
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 49ca587

Please sign in to comment.