[GitHub] [geode] balesh2 commented on pull request #2589: GEODE-5807: Refactor flakey GMSHealthMonitorJUnitTest tests by removi…

2018-10-11 Thread GitHub
Does removing this not make the test flaky? Seems like it would have the potential to fail on that verify. I have the same question about removing lines 370 and 443 (in the old file's numbering) [ Full content available at: https://github.com/apache/geode/pull/2589 ] This message was relayed

[GitHub] [geode] galen-pivotal commented on pull request #2581: GEODE-5830: Fix `NONE` enum for SSL configuration

2018-10-11 Thread GitHub
Good cleanup here. However, per [the style guide](https://cwiki.apache.org/confluence/display/GEODE/Code+Style+Guide), "Always use braces, even around one-line `if`, `else` and other control statements." [ Full content available at: https://github.com/apache/geode/pull/2581 ] This message

[GitHub] [geode] metatype commented on pull request #2591: GEODE-5848 conditionally add --add-opens for test jvm versions 9 and up

2018-10-11 Thread GitHub
Just curious, is this related to adding the JAXB dependencies or does it solve a different issue? [ Full content available at: https://github.com/apache/geode/pull/2591 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] galen-pivotal commented on pull request #2581: GEODE-5830: Fix `NONE` enum for SSL configuration

2018-10-11 Thread GitHub
Suuuper minor grammatical suggestion: put a comma after "all", so that there are clearly three commma-separated options. [ Full content available at: https://github.com/apache/geode/pull/2581 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] sboorlagadda closed pull request #2586: GEODE-5212: fix timing issues in AfterCompletionTest

2018-10-11 Thread GitHub
[ pull request closed by sboorlagadda ] [ Full content available at: https://github.com/apache/geode/pull/2586 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] WireBaron commented on pull request #2589: GEODE-5807: Refactor flakey GMSHealthMonitorJUnitTest tests by removi…

2018-10-11 Thread GitHub
No, the suspect state we're checking is set synchronously in the suspect call above. I'm not sure why this sleep was ever here. InstallView also synchronously sets all the state needed for the test, making the old sleeps at 370 and 443 similarly pointless. [ Full content available at:

[GitHub] [geode] WireBaron closed pull request #2589: GEODE-5807: Refactor flakey GMSHealthMonitorJUnitTest tests by removi…

2018-10-11 Thread GitHub
[ pull request closed by WireBaron ] [ Full content available at: https://github.com/apache/geode/pull/2589 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] PurelyApplied commented on pull request #2593: GEODE-5850: Do not build jar in test.

2018-10-11 Thread GitHub
Similar to the other comment, there's no real reason this has to get packaged in the `jar` to the full `o.a.g.m.i.c.c` package. Would this test read cleaner if the jar put the `SerializableNameContainer` at the top-level package? I know I'm overthinking this. [ Full content available at:

[GitHub] [geode] PurelyApplied commented on pull request #2593: GEODE-5850: Do not build jar in test.

2018-10-11 Thread GitHub
Any opinions on where this data container class should live? I kept it on the path to be the same as the test that needs it, but that's not really necessary. It could belong to `geode-dunit` as a shared resource, if we track down other places that need a simple `java.io.Serializable` data

[GitHub] [geode] mhansonp commented on issue #2595: GEODE-5853: fix to check if testJVM is empty

2018-10-11 Thread GitHub
@pivotal-jbarrett @onichols-pivotal Please review this build fix. [ Full content available at: https://github.com/apache/geode/pull/2595 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] mhansonp opened pull request #2595: GEODE-5853: fix to check if testJVM is empty

2018-10-11 Thread GitHub
Thank you for submitting a contribution to Apache Geode. In order to streamline the review of the contribution we ask you to ensure the following steps have been taken: ### For all changes: - [ ] Is there a JIRA ticket associated with this PR? Is it referenced in the commit message? - [ ] Has

[GitHub] [geode] galen-pivotal closed pull request #2595: GEODE-5853: fix to check if testJVM is empty

2018-10-11 Thread GitHub
[ pull request closed by galen-pivotal ] [ Full content available at: https://github.com/apache/geode/pull/2595 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] pivotal-eshu opened pull request #2594: GEODE-5849: Do not wrap CacheClosedException if client cache is closing.

2018-10-11 Thread GitHub
[ Full content available at: https://github.com/apache/geode/pull/2594 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] nabarunnag opened pull request #2596: GEODE-5852: Adding 1.7.0 to old version

2018-10-11 Thread GitHub
* as 1.7.0 has been released, this version must be tested against the current snapshot * thus 1.7.0 has been added to the build.gradle file of the geode-old-version project. Thank you for submitting a contribution to Apache Geode. In order to streamline the review of the

[GitHub] [geode] PurelyApplied opened pull request #2593: GEODE-5850: Do not build jar in test.

2018-10-11 Thread GitHub
Thank you for submitting a contribution to Apache Geode. In order to streamline the review of the contribution we ask you to ensure the following steps have been taken: ### For all changes: - [x] Is there a JIRA ticket associated with this PR? Is it referenced in the commit message? - [x] Has

[GitHub] [geode] dschneider-pivotal commented on pull request #2594: GEODE-5849: Do not wrap CacheClosedException if client cache is closing.

2018-10-11 Thread GitHub
why do you have two assignments of "runtimeException"? Seems like the second assignment just throws away your new one. [ Full content available at: https://github.com/apache/geode/pull/2594 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] PurelyApplied commented on pull request #2593: GEODE-5850: Do not build jar in test.

2018-10-11 Thread GitHub
Upon immediate hindsight, this is absolutely not the right way to do this. Maybe examine the class, get a list of dependencies, and depend on those. As it stands, our `repeat-new-tests.sh` will run the entire `*Test` instead of just repeating the changed tests within that scope. [ Full

[GitHub] [geode] WireBaron commented on pull request #2589: GEODE-5807: Refactor flakey GMSHealthMonitorJUnitTest tests by removi…

2018-10-11 Thread GitHub
Testing this it looks like awaitility swallows the assertion failure and simply outputs: ```org.awaitility.core.ConditionTimeoutException: Assertion condition defined as a lambda expression in org.apache.geode.distributed.internal.membership.gms.fd.GMSHealthMonitorJUnitTest null within 1000

[GitHub] [geode] onichols-pivotal opened pull request #2592: GEODE-5851 use gradle-dockerized-test-plugin compiled with Java 8

2018-10-11 Thread GitHub
Thank you for submitting a contribution to Apache Geode. In order to streamline the review of the contribution we ask you to ensure the following steps have been taken: ### For all changes: - [x] Is there a JIRA ticket associated with this PR? Is it referenced in the commit message? - [x] Has

[GitHub] [geode] galen-pivotal commented on issue #2581: GEODE-5830: Fix `NONE` enum for SSL configuration

2018-10-11 Thread GitHub
@jujoramos if you want, I'm happy to add the braces and merge. Just figured it might be helpful to get feedback on the style guide. [ Full content available at: https://github.com/apache/geode/pull/2581 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] pivotal-eshu commented on pull request #2594: GEODE-5849: Do not wrap CacheClosedException if client cache is closing.

2018-10-11 Thread GitHub
You are right, it should not set runtimeException as getCancelCriterion().generateCancelledException would throw exception if cache is closing. I was just use the code in basicPutAll. [ Full content available at: https://github.com/apache/geode/pull/2594 ] This message was relayed via

[GitHub] [geode] mhansonp commented on issue #2597: Geode 5728

2018-10-11 Thread GitHub
@WireBaron @galen-pivotal @upthewaterspout [ Full content available at: https://github.com/apache/geode/pull/2597 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] onichols-pivotal opened pull request #2598: GEODE-5855 hide jobs that are not gating in default pipeline view

2018-10-11 Thread GitHub
Thank you for submitting a contribution to Apache Geode. In order to streamline the review of the contribution we ask you to ensure the following steps have been taken: ### For all changes: - [x] Is there a JIRA ticket associated with this PR? Is it referenced in the commit message? - [x] Has

[GitHub] [geode] dickcav commented on pull request #2598: GEODE-5855 hide jobs that are not gating in default pipeline view

2018-10-11 Thread GitHub
@pivotal-amurmann may want to review this. [ Full content available at: https://github.com/apache/geode/pull/2598 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode-native] mmartell commented on issue #377: GEODE-5847: Integrate clang-format into CMake.

2018-10-11 Thread GitHub
This looks awesome! I assume this corrects any IDE formatting issues so that as long as I compile before I check-in, they will be corrected. [ Full content available at: https://github.com/apache/geode-native/pull/377 ] This message was relayed via gitbox.apache.org for

[GitHub] [geode] sboorlagadda closed pull request #2580: GEODE-5212: fix failing StartLocator and Server command DUnit tests

2018-10-11 Thread GitHub
[ pull request closed by sboorlagadda ] [ Full content available at: https://github.com/apache/geode/pull/2580 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] Bill opened pull request #2601: GEODE-5568: Increase wait in testCacheOpAfterQueryCancel

2018-10-11 Thread GitHub
Fix intermittently-failing test: QueryMonitorDUnitTest.testCacheOpAfterQueryCancel() by increasing timeout to account for GC pauses. Also did some test refactoring cleanup: * clean up DefaultQuery.TestHook interface * remove dead code * improve test comments * remove spurious TODOs *

[GitHub] [geode-native] pivotal-jbarrett commented on issue #377: GEODE-5847: Integrate clang-format into CMake.

2018-10-11 Thread GitHub
If clang-format is found, yes. [ Full content available at: https://github.com/apache/geode-native/pull/377 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] PurelyApplied commented on pull request #2598: GEODE-5855 hide jobs that are not gating in default pipeline view

2018-10-11 Thread GitHub
I almost hate to comment on one-line PRs, but if the intent is "only the things that act as blocking for `UpdatePassingRef`, then we should use the same as that block: ``` - name: UpdatePassingRef public: true serial: true plan: - get: geode passed: {% for test in tests if not

[GitHub] [geode] pivotal-eshu closed pull request #2594: GEODE-5849: Do not wrap CacheClosedException if client cache is closing.

2018-10-11 Thread GitHub
[ pull request closed by pivotal-eshu ] [ Full content available at: https://github.com/apache/geode/pull/2594 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] sboorlagadda commented on pull request #2580: GEODE-5212: fix failing StartLocator and Server command DUnit tests

2018-10-11 Thread GitHub
Done! [ Full content available at: https://github.com/apache/geode/pull/2580 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] mhansonp opened pull request #2597: Geode 5728

2018-10-11 Thread GitHub
Thank you for submitting a contribution to Apache Geode. In order to streamline the review of the contribution we ask you to ensure the following steps have been taken: ### For all changes: - [ ] Is there a JIRA ticket associated with this PR? Is it referenced in the commit message? - [ ] Has

[GitHub] [geode] mhansonp commented on pull request #2597: Geode 5728

2018-10-11 Thread GitHub
Important part of the fix here... [ Full content available at: https://github.com/apache/geode/pull/2597 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] dickcav commented on pull request #2598: GEODE-5855 hide jobs that are not gating in default pipeline view

2018-10-11 Thread GitHub
@pivotal-amurmann Should we then have an All or Complete so we can see them all? [ Full content available at: https://github.com/apache/geode/pull/2598 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] onichols-pivotal commented on pull request #2598: GEODE-5855 hide jobs that are not gating in default pipeline view

2018-10-11 Thread GitHub
created a macro for all_gating_jobs and added "complete" tab [ Full content available at: https://github.com/apache/geode/pull/2598 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] PurelyApplied opened pull request #2599: GEODE-5856: Consolidate dependency blocks in gradle files

2018-10-11 Thread GitHub
Thank you for submitting a contribution to Apache Geode. In order to streamline the review of the contribution we ask you to ensure the following steps have been taken: ### For all changes: - [x] Is there a JIRA ticket associated with this PR? Is it referenced in the commit message? - [x] Has

[GitHub] [geode] PurelyApplied commented on issue #2599: GEODE-5856: Consolidate dependency blocks in gradle files

2018-10-11 Thread GitHub
This rearrangement is in service of easier future PR review, when dependencies are updated to be explicit in each module. [ Full content available at: https://github.com/apache/geode/pull/2599 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] Bill commented on issue #2601: GEODE-5568: Increase wait in testCacheOpAfterQueryCancel

2018-10-11 Thread GitHub
@galen-pivotal, @jinmeiliao please review [ Full content available at: https://github.com/apache/geode/pull/2601 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] Bill commented on issue #2601: GEODE-5568: Increase wait in testCacheOpAfterQueryCancel

2018-10-11 Thread GitHub
@galen-pivotal, @jinmeiliao [ Full content available at: https://github.com/apache/geode/pull/2601 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] dickcav closed pull request #2591: GEODE-5848 conditionally add --add-opens for test jvm versions 9 and up

2018-10-11 Thread GitHub
[ pull request closed by dickcav ] [ Full content available at: https://github.com/apache/geode/pull/2591 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] mhansonp commented on issue #2597: Geode 5728

2018-10-11 Thread GitHub
@WireBaron @galen-pivotal @upthewaterspout [ Full content available at: https://github.com/apache/geode/pull/2597 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] pivotal-eshu commented on pull request #2594: GEODE-5849: Do not wrap CacheClosedException if client cache is closing.

2018-10-11 Thread GitHub
Actually, the method may not throw CacheClosedException but return CacheClosedException instead. Made the change necessary. [ Full content available at: https://github.com/apache/geode/pull/2594 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] upthewaterspout commented on pull request #2598: GEODE-5855 hide jobs that are not gating in default pipeline view

2018-10-11 Thread GitHub
Should this be `java_test_version.name.endsWith("JDK11")` ? [ Full content available at: https://github.com/apache/geode/pull/2598 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] bschuchardt closed pull request #2588: GEODE-5843 ReconnectDUnitTest.testReconnectWithRequiredRoleRegained is being ignored

2018-10-11 Thread GitHub
[ pull request closed by bschuchardt ] [ Full content available at: https://github.com/apache/geode/pull/2588 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] mcmellawatt commented on issue #2597: Geode 5728

2018-10-11 Thread GitHub
You'll want to fix the commit message to be "GEODE-: Some description of work" [ Full content available at: https://github.com/apache/geode/pull/2597 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] mcmellawatt commented on issue #2597: Geode 5728

2018-10-11 Thread GitHub
You'll want to fix the PR message to be "GEODE-: Some description of work" [ Full content available at: https://github.com/apache/geode/pull/2597 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode] jujoramos commented on issue #2582: GEODE-5838: Fix warnings in javadocs generation

2018-10-11 Thread GitHub
Thanks @galen-pivotal! You're right, it doesn't even make sense to reference the other example (`SimpleSecurityManager`) so I'll remove that part entirely from the javadocs. Cheers. [ Full content available at: https://github.com/apache/geode/pull/2582 ] This message was relayed via

[GitHub] [geode] jujoramos commented on issue #2581: GEODE-5830: Fix `NONE` enum for SSL configuration

2018-10-11 Thread GitHub
Agreed @galen-pivotal, I'll remove the `none` constant altogether and update the docs + tests. Cheers. [ Full content available at: https://github.com/apache/geode/pull/2581 ] This message was relayed via gitbox.apache.org for notifications@geode.apache.org

[GitHub] [geode-native] mmartell opened pull request #378: GEODE-5638: Move cppcache/integration-tests to legacy

2018-10-11 Thread GitHub
This change puts all of the old framework cpp integration tests into a legacy subdirectory to make it easier to find the other test related projects. [ Full content available at: https://github.com/apache/geode-native/pull/378 ] This message was relayed via gitbox.apache.org for