Repository: incubator-ignite Updated Branches: refs/heads/ignite-45 5d6257c7a -> d81c08b56
# IGNITE-45 Bug fix: Cache starting hangs on internal error in a cache manager. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/d81c08b5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/d81c08b5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/d81c08b5 Branch: refs/heads/ignite-45 Commit: d81c08b5674d0abcc7bc4b9cb2eac7edc89164b3 Parents: 5d6257c Author: sevdokimov <[email protected]> Authored: Mon Mar 16 18:03:36 2015 +0300 Committer: sevdokimov <[email protected]> Committed: Mon Mar 16 18:03:36 2015 +0300 ---------------------------------------------------------------------- .../distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/d81c08b5/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java index 7858b84..a8cc921 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java @@ -519,7 +519,7 @@ public class GridDhtPartitionsExchangeFuture extends GridFutureAdapter<AffinityT throw e; } - catch (IgniteCheckedException e) { + catch (Throwable e) { U.error(log, "Failed to reinitialize local partitions (preloading will be stopped): " + exchId, e); onDone(e);
