Repository: ignite Updated Branches: refs/heads/master cc480feaa -> 91a826863
IGNITE-10646 Fixed type in PME diagnostic - Fixes #5611. Signed-off-by: Alexey Goncharuk <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/91a82686 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/91a82686 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/91a82686 Branch: refs/heads/master Commit: 91a82686314f6b4aabbb25308b0002ae18ca6ee2 Parents: cc480fe Author: Stephen Darlington <[email protected]> Authored: Wed Dec 12 16:36:00 2018 +0300 Committer: Alexey Goncharuk <[email protected]> Committed: Wed Dec 12 16:36:00 2018 +0300 ---------------------------------------------------------------------- .../processors/cache/GridCachePartitionExchangeManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/91a82686/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCachePartitionExchangeManager.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCachePartitionExchangeManager.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCachePartitionExchangeManager.java index 88f6f0c..96158d7 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCachePartitionExchangeManager.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCachePartitionExchangeManager.java @@ -2914,7 +2914,7 @@ public class GridCachePartitionExchangeManager<K, V> extends GridCacheSharedMana "topVer=" + exchFut.initialVersion() + ", node=" + cctx.localNodeId() + "]. " + (curTimeout <= 0 && !txRolledBack ? "Consider changing " + - "TransactionConfiguration.txTimeoutOnPartitionMapSynchronization" + + "TransactionConfiguration.txTimeoutOnPartitionMapExchange" + " to non default value to avoid this message. " : "") + "Dumping pending objects that might be the cause: ");
