Skip to content

Commit

Permalink
Bug fix and version update 1.0.6 -< 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
scottslewis committed Sep 11, 2021
1 parent 226270f commit 2df8633
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion org.eclipse.ecf.provider.etcd3/bnd.bnd
Expand Up @@ -32,7 +32,7 @@ javac.source=1.8
javac.target=1.8

package-version = 1.0.2
Bundle-Version: 1.0.6.${tstamp}
Bundle-Version: 1.0.7.${tstamp}

-runfw: org.apache.felix.framework;version='[7.0.0,7.0.0]'
-runee: JavaSE-1.8
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.ecf.provider.etcd3/pom.xml
Expand Up @@ -10,7 +10,7 @@
</parent>

<artifactId>org.eclipse.ecf.provider.etcd3</artifactId>
<version>1.0.6</version>
<version>1.0.7</version>
<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
Expand Down
Expand Up @@ -366,12 +366,6 @@ private EtcdServiceInfoKey parseServiceInfoKey(String key) {
debug("parseServiceInfoKey", "Could not parse sessionKey=" + sessionKey + " into UUID");
return null;
}
try {
UUID.fromString(siKey);
} catch (IllegalArgumentException e) {
debug("parseServiceInfoKey", "Could not parse siKey=" + siKey + " into UUID");
return null;
}
return new EtcdServiceInfoKey(sessionKey, siKey);
}
}
Expand Down

0 comments on commit 2df8633

Please sign in to comment.