Skip to content

Commit

Permalink
Merge pull request #10 from reactiverse/release-1.0.1
Browse files Browse the repository at this point in the history
Releasing 1.1.0 that is 3.7.1 vert.x core and 2.1.2 consul compliant.
  • Loading branch information
romalev authored Jun 3, 2019
2 parents 2d43917 + e9aac98 commit 63bdb23
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<groupId>io.reactiverse</groupId>
<artifactId>consul-cluster-manager</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<name>Vert.x Consul Cluster Manager</name>
<url>https://github.com/reactiverse/consul-cluster-manager</url>
<description>Consul - based cluster manager that can be hooked into Vert.x ecosystem.</description>
Expand Down Expand Up @@ -63,9 +63,9 @@
</developers>

<properties>
<stack.version>3.7.0</stack.version>
<stack.version>3.7.1</stack.version>
<junit.version>4.12</junit.version>
<embedded.consul.version>1.1.1</embedded.consul.version>
<embedded.consul.version>2.1.2</embedded.consul.version>
</properties>

<dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public class ConsulClusterManager extends ConsulMap<String, String> implements C
* Example:
* <pre>
* JsonObject options = new JsonObject()
* .put("host", "localhost")
* .put("host", "consulAgentHost")
* .put("port", consulAgentPort)
* .put("preferConsistency", true);
* </pre>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void testMapPutGetDoubleSlash() {
assertNotNull(asyncMapHandler.result());
asyncMapHandler.result().put("//key", "value", handler -> {
assertTrue(handler.failed());
assertEquals("Moved Permanently", handler.cause().getMessage());
assertTrue(handler.cause().getMessage().contains("Moved Permanently"));
complete();
});
});
Expand Down

0 comments on commit 63bdb23

Please sign in to comment.