You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there are two deployer files and corresponding two fatjars generated :
DeployerDev.java deploys non-clustered vertx which does not need zookeeper. This is useful for
dev env
Deployer.java deploys clustered vertx which deploys clustered vertx. And needs zookeeper. This is how its deployed in production.
It would be best to merge these files. Because some code/logic common to both might be implemented in one file but not other (eg: Bug-fix: worker verticle configuration setting #315) and also cumbersome to maintain two files which just differs in how vertx is deployed. It can be captured through flags (in jar, in maven also mostly) and conditional logic.
The text was updated successfully, but these errors were encountered:
Currently there are two deployer files and corresponding two fatjars generated :
dev env
It would be best to merge these files. Because some code/logic common to both might be implemented in one file but not other (eg: Bug-fix: worker verticle configuration setting #315) and also cumbersome to maintain two files which just differs in how vertx is deployed. It can be captured through flags (in jar, in maven also mostly) and conditional logic.
The text was updated successfully, but these errors were encountered: