Skip to content

Commit

Permalink
Fixed swapped comments above methods
Browse files Browse the repository at this point in the history
  • Loading branch information
KPranith committed Feb 11, 2018
1 parent bfa9280 commit 12a4fd7
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ public void start() {
JsonArray quotes = config().getJsonArray("companies");
for (Object q : quotes) {
JsonObject company = (JsonObject) q;
// Deploy the verticle with a configuration.
// Deploy another verticle without configuration.
vertx.deployVerticle(MarketDataVerticle.class.getName(), new DeploymentOptions().setConfig(company));
}

// Deploy another verticle without configuration.

// Deploy the verticle with a configuration.
vertx.deployVerticle(RestQuoteAPIVerticle.class.getName(), new DeploymentOptions().setConfig(config()));

// Publish the services in the discovery infrastructure.
Expand Down

0 comments on commit 12a4fd7

Please sign in to comment.