[Spring CI] Spring Data GemFire > Nightly-ApacheGeode > #103 was SUCCESSFUL (with 1214 tests)

2015-10-22 Thread Spring CI
--- Spring Data GemFire > Nightly-ApacheGeode > #103 was successful. --- Scheduled 1218 tests in total. https://build.spring.io/browse/SGF-NAG-103/ -- This

Geode Bug Squashathon Day Four

2015-10-22 Thread Kirk Lund
We just finished our 4th day of Geode Bug Squashathon (Thurs) and we've had another GREEN build of DistributedTests. We had 12 volunteers and committed fixes for another 4 tickets. The UnitTest and IntegrationTest suites remained green for us except for 2 failures in IntegrationTests which were bot

Re: Review Request 39488: GEODE-77: deadlock in GMSJoinLeave

2015-10-22 Thread anilkumar gingade
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/39488/#review103704 --- Ship it! Ship It! - anilkumar gingade On Oct. 20, 2015, 6:01 p.

Re: GEODE-474: Update Gradle Wrapper to Gradle Version 2.8

2015-10-22 Thread Anthony Baker
Tested and works for me. > On Oct 22, 2015, at 5:46 PM, Udo Kohlmeyer wrote: > > +1 > > On 10/23/2015 11:44 AM, William Markito wrote: >> +1 >> >> On Thu, Oct 22, 2015 at 5:30 PM, Dan Smith wrote: >> >>> +1 >>> >>> -Dan >>> >>> On Thu, Oct 22, 2015 at 4:42 PM, Mark Bretl wrote: >>>

Re: GEODE-474: Update Gradle Wrapper to Gradle Version 2.8

2015-10-22 Thread Udo Kohlmeyer
+1 On 10/23/2015 11:44 AM, William Markito wrote: +1 On Thu, Oct 22, 2015 at 5:30 PM, Dan Smith wrote: +1 -Dan On Thu, Oct 22, 2015 at 4:42 PM, Mark Bretl wrote: Hi, I would like to discuss GEODE-474, https://issues.apache.org/jira/browse/GEODE-474. We have not updated our Gradle versi

Re: GEODE-474: Update Gradle Wrapper to Gradle Version 2.8

2015-10-22 Thread Jianxia Chen
+1 On Thu, Oct 22, 2015 at 5:30 PM, Dan Smith wrote: > +1 > > -Dan > > On Thu, Oct 22, 2015 at 4:42 PM, Mark Bretl wrote: > > > Hi, > > > > I would like to discuss GEODE-474, > > https://issues.apache.org/jira/browse/GEODE-474. We have not updated our > > Gradle version since starting incubatio

Re: GEODE-474: Update Gradle Wrapper to Gradle Version 2.8

2015-10-22 Thread William Markito
+1 On Thu, Oct 22, 2015 at 5:30 PM, Dan Smith wrote: > +1 > > -Dan > > On Thu, Oct 22, 2015 at 4:42 PM, Mark Bretl wrote: > > > Hi, > > > > I would like to discuss GEODE-474, > > https://issues.apache.org/jira/browse/GEODE-474. We have not updated our > > Gradle version since starting incubatio

Re: GEODE-474: Update Gradle Wrapper to Gradle Version 2.8

2015-10-22 Thread Dan Smith
+1 -Dan On Thu, Oct 22, 2015 at 4:42 PM, Mark Bretl wrote: > Hi, > > I would like to discuss GEODE-474, > https://issues.apache.org/jira/browse/GEODE-474. We have not updated our > Gradle version since starting incubation, which is using 2.3, and there > have been Gradle releases with some usef

GEODE-474: Update Gradle Wrapper to Gradle Version 2.8

2015-10-22 Thread Mark Bretl
Hi, I would like to discuss GEODE-474, https://issues.apache.org/jira/browse/GEODE-474. We have not updated our Gradle version since starting incubation, which is using 2.3, and there have been Gradle releases with some useful features. Features of 2.8 include: - Faster configuration - Con

Re: Review Request 39023: GEODE-381 enable gfsh https usage through SSL terminated environments

2015-10-22 Thread John Blum
I would also add that this is probably a moot point until the Management Integration/Distributed (DUnit) tests get added... https://github.com/apache/incubator-geode/tree/develop/gemfire-core/src/test/java/com/gemstone/gemfire/management/internal/cli/commands Currently, there are none (only "unit

Re: Review Request 39023: GEODE-381 enable gfsh https usage through SSL terminated environments

2015-10-22 Thread Kirk Lund
If you want to use annotations or other JUnit 4 syntax in a DUnit, it'll have to wait until after I merge feature/GEODE-217 to develop. We'll also need an engineer to spend one or more weeks updating all of the relevant management dunit tests to use JUnit 4 syntax. -Kirk On Thu, Oct 22, 2015 at

Re: Review Request 39023: GEODE-381 enable gfsh https usage through SSL terminated environments

2015-10-22 Thread John Blum
So to be clear, the Management REST API has it's own set of test classes for "unit" tests. When it comes to integration testing, I took advantage of the fact the Management REST API just exposes an interface for the Gfsh commands that are executed on the Manager over HTTP. I.e. they use the same M

Re: Review Request 39023: GEODE-381 enable gfsh https usage through SSL terminated environments

2015-10-22 Thread Anthony Baker
Can we apply the @Parameterized annotation here? Two code paths, one test (as the old saying goes…) Anthony > On Oct 22, 2015, at 1:46 PM, Kirk Lund wrote: > > This would similar to having to rerun all of the "region" tests with a > system property specifying "replicated" or "partitioned". Pe

Re: Review Request 39023: GEODE-381 enable gfsh https usage through SSL terminated environments

2015-10-22 Thread Kirk Lund
This would similar to having to rerun all of the "region" tests with a system property specifying "replicated" or "partitioned". Perhaps all of the management (integration or distributed) tests that have an HTTP REST counterpart need to be subclassed with a test case that overrides some bit of conf

Re: Review Request 39023: GEODE-381 enable gfsh https usage through SSL terminated environments

2015-10-22 Thread John Blum
Well, there are 2 scenarios under which Management tests should run, 1 with JMX RMI and the other with HTTP. So you you will need to incorporate some elaborate code in the Gradle-based build to handle this and capture the results without stomping on nearly identical runs, since it share the same t

Re: Review Request 39023: GEODE-381 enable gfsh https usage through SSL terminated environments

2015-10-22 Thread Dan Smith
I don't think there is a counterpart in the gradle build. And I don't think there should be - if this is something that needs to be tested it should be running in every nightly build, not just when you pass a special flag. -Dan On Thu, Oct 22, 2015 at 12:12 PM, Kirk Lund wrote: > This is from t

Re: Review Request 39023: GEODE-381 enable gfsh https usage through SSL terminated environments

2015-10-22 Thread Jens Deppe
> On Oct. 22, 2015, 6:55 p.m., John Blum wrote: > > gemfire-core/src/main/java/com/gemstone/gemfire/management/internal/web/controllers/AbstractCommandsController.java, > > line 255 > > > > > > Make the "scheme" par

Geode Bug Squashathon Day Three (Wednesday)

2015-10-22 Thread Kirk Lund
On the third day of Geode Bug Squashathon (Wed) we had our 1st GREEN build of DistributedTests this week! We had 11 volunteers fixing 4 tickets (12 more remained in progress by end of day). The UnitTests and IntegrationTests remained green for us except for 1 failure in IntegrationTests. We had sev

Re: Review Request 39023: GEODE-381 enable gfsh https usage through SSL terminated environments

2015-10-22 Thread Kirk Lund
This is from the old Ant build (which Geode doesn't use): $build.sh run-management-tests -DuseHTTP=true What's the counterpart in the Geode gradle build? -Kirk On Thu, Oct 22, 2015 at 11:55 AM, John Blum wrote: > > --- > This is an auto

Re: Review Request 39023: GEODE-381 enable gfsh https usage through SSL terminated environments

2015-10-22 Thread John Blum
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/39023/#review103635 --- You will also need to run the Management test suite using HTTP (esp

Re: [VOTE] Accept new Apache Geode website verbiage and design

2015-10-22 Thread Gregory Chase
Sorry for the late resolution of this. I have received feedback from one person which has been incorporated. With no other comments or objections, I will be switching the Apache Geode website over to this proposal as soon as possible: https://cwiki.apache.org/confluence/display/GEODE/Sept+2015+W

Re: Subscribe please

2015-10-22 Thread Gregory Chase
Hi Amy, Please send an email to dev-subscr...@geode.incubator.apache.org. It will respond, and you reply to that email to confirm. On Thu, Oct 22, 2015 at 10:07 AM, Amy Welch wrote: > Thank you. > > -- > Amy Welch > OSS Marketing > -- Greg Chase Director of Big Data Communities http://www.p

Subscribe please

2015-10-22 Thread Amy Welch
Thank you. -- Amy Welch OSS Marketing

Review Request 39554: GEODE-77: failure to deserialize member IDs from old GemFire clients

2015-10-22 Thread Bruce Schuchardt
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/39554/ --- Review request for geode, anilkumar gingade, Jason Huynh, Jianxia Chen, and Lynn

Build failed in Jenkins: Geode-nightly #253

2015-10-22 Thread Apache Jenkins Server
See Changes: [jdeppe] GEODE-466 add ability to set debug port for dunit VMs -- [...truncated 178 lines...]