You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dg...@apache.org on 2019/01/10 21:22:49 UTC

[ignite] branch ignite-10809-dg updated (b8ee25c -> 2b4b166)

This is an automated email from the ASF dual-hosted git repository.

dgovorukhin pushed a change to branch ignite-10809-dg
in repository https://gitbox.apache.org/repos/asf/ignite.git.


    from b8ee25c  IGNITE-10809 test refactoring
     new 6b6c0f1  IGNITE-10809 added assert info
     add 47683e7  IGNITE-10875 Web Console: Updated tooltip.
     add ad6a7ee  IGNITE-10856 Upgrade cassandra driver version to fix Guava conflict - Fixes #5780.
     add e61d347  IGNITE-10732 Force -Dfile.encoding=UTF-8 when not specified otherwise - Fixes #5725.
     add 40f1fc9  IGNITE-10883 Fix and refactoring IgniteRebalanceOnCachesStoppingOrDestroyingTest flaky test - Fixes #5795.
     new 2b4b166  Merge branch 'master' into ignite-10809-dg

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 bin/include/parseargs.sh                           |  10 +
 modules/cassandra/store/pom.xml                    |   4 +-
 .../apache/ignite/tests/utils/CassandraHelper.java |   4 +-
 .../ignite/tests/utils/CassandraLifeCycleBean.java |   1 +
 .../org/apache/ignite/internal/IgniteKernal.java   |  19 ++
 .../managers/discovery/GridDiscoveryManager.java   |   2 +-
 .../internal/processors/cache/WalStateManager.java |   6 +-
 .../startup/cmdline/CommandLineTransformer.java    |  10 +-
 ...eRebalanceOnCachesStoppingOrDestroyingTest.java | 207 ++++++++++++---------
 .../GridCommandLineTransformerSelfTest.java        |   6 +-
 modules/platforms/cpp/core/src/ignition.cpp        |  17 +-
 .../Apache.Ignite.Core/Impl/IgniteManager.cs       |   8 +-
 .../app/components/page-configure/template.pug     |   4 +-
 13 files changed, 198 insertions(+), 100 deletions(-)


[ignite] 01/02: IGNITE-10809 added assert info

Posted by dg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dgovorukhin pushed a commit to branch ignite-10809-dg
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 6b6c0f198851fb977f6fc499c82fbcb74cf43928
Author: Sergey Chugunov <se...@gmail.com>
AuthorDate: Tue Dec 25 14:01:50 2018 +0300

    IGNITE-10809 added assert info
---
 .../org/apache/ignite/internal/processors/cache/WalStateManager.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/WalStateManager.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/WalStateManager.java
index 937f1f0..0ed59e9 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/WalStateManager.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/WalStateManager.java
@@ -507,7 +507,7 @@ public class WalStateManager extends GridCacheSharedManagerAdapter {
                     for (Integer grpId0 : session0.disabledGrps) {
                         CacheGroupContext grp = cctx.cache().cacheGroup(grpId0);
 
-                        assert grp != null;
+                        assert grp != null : "grpId=" + grpId0;
 
                         grp.topology().ownMoving(topVer);
                     }


[ignite] 02/02: Merge branch 'master' into ignite-10809-dg

Posted by dg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dgovorukhin pushed a commit to branch ignite-10809-dg
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 2b4b1662e8d6b81d48a7141100fbc6f63ff212dd
Merge: 6b6c0f1 40f1fc9
Author: Dmitriy Govorukhin <dm...@gmail.com>
AuthorDate: Fri Jan 11 00:21:51 2019 +0300

    Merge branch 'master' into ignite-10809-dg
    
    # Conflicts:
    #	modules/core/src/main/java/org/apache/ignite/internal/processors/cache/WalStateManager.java

 bin/include/parseargs.sh                           |  10 +
 modules/cassandra/store/pom.xml                    |   4 +-
 .../apache/ignite/tests/utils/CassandraHelper.java |   4 +-
 .../ignite/tests/utils/CassandraLifeCycleBean.java |   1 +
 .../org/apache/ignite/internal/IgniteKernal.java   |  19 ++
 .../managers/discovery/GridDiscoveryManager.java   |   2 +-
 .../internal/processors/cache/WalStateManager.java |   6 +-
 .../startup/cmdline/CommandLineTransformer.java    |  10 +-
 ...eRebalanceOnCachesStoppingOrDestroyingTest.java | 207 ++++++++++++---------
 .../GridCommandLineTransformerSelfTest.java        |   6 +-
 modules/platforms/cpp/core/src/ignition.cpp        |  17 +-
 .../Apache.Ignite.Core/Impl/IgniteManager.cs       |   8 +-
 .../app/components/page-configure/template.pug     |   4 +-
 13 files changed, 198 insertions(+), 100 deletions(-)