SGF-644 - Upgrade to Pivotal GemFire 9.1.0.

This commit is contained in:
John Blum
2017-07-19 13:54:57 -07:00
parent 4722a2ebbf
commit 495aba1b4b
3 changed files with 2 additions and 9 deletions

View File

@@ -2,7 +2,7 @@ antlrVersion=2.7.7
aspectjVersion=1.8.9
assertjVersion=3.6.2
cdiVersion=1.0
gemfireVersion=9.0.4
gemfireVersion=9.1.0
hamcrestVersion=1.3
jacksonVersion=2.8.6
junitVersion=4.12

View File

@@ -19,7 +19,7 @@
<antlr.version>2.7.7</antlr.version>
<apache-shiro.version>1.3.2</apache-shiro.version>
<assertj.version>3.6.2</assertj.version>
<gemfire.version>9.0.4</gemfire.version>
<gemfire.version>9.1.0</gemfire.version>
<google-code-findbugs.version>2.0.2</google-code-findbugs.version>
<multithreadedtc.version>1.01</multithreadedtc.version>
<servlet-api.version>2.5</servlet-api.version>

View File

@@ -26,7 +26,6 @@ import org.apache.geode.GemFireIOException;
import org.apache.geode.IncompatibleSystemException;
import org.apache.geode.InternalGemFireException;
import org.apache.geode.InvalidValueException;
import org.apache.geode.LicenseException;
import org.apache.geode.NoSystemException;
import org.apache.geode.SystemConnectException;
import org.apache.geode.SystemIsRunningException;
@@ -194,9 +193,6 @@ public abstract class GemfireCacheUtils {
if (ex instanceof CopyException) {
return new GemfireSystemException(ex);
}
if (ex instanceof org.apache.geode.cache.EntryNotFoundInRegion) {
return new DataRetrievalFailureException(ex.getMessage(), ex);
}
if (ex instanceof FunctionException) {
return new InvalidDataAccessApiUsageException(ex.getMessage(), ex);
}
@@ -224,9 +220,6 @@ public abstract class GemfireCacheUtils {
if (ex instanceof LeaseExpiredException) {
return new PessimisticLockingFailureException(ex.getMessage(), ex);
}
if (ex instanceof LicenseException) {
return new GemfireSystemException(ex);
}
if (ex instanceof NoSystemException) {
return new GemfireSystemException(ex);
}