[jira] [Commented] (GEODE-4355) ControlFileWatchdogIntegrationTest.invokesRequestHandler_afterFileCreation fails intermittently in CI

2021-03-05 Thread Geode Integration (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-4355?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17296310#comment-17296310
 ] 

Geode Integration commented on GEODE-4355:
--

Seen on support/1.12 in [IntegrationTestOpenJDK8 
#17|https://concourse.apachegeode-ci.info/teams/main/pipelines/apache-support-1-12-main/jobs/IntegrationTestOpenJDK8/builds/17]
 ... see [test 
results|http://files.apachegeode-ci.info/builds/apache-support-1-12-main/1.12.2-build.0195/test-results/integrationTest/1614937547/]
 or download 
[artifacts|http://files.apachegeode-ci.info/builds/apache-support-1-12-main/1.12.2-build.0195/test-artifacts/1614937547/integrationtestfiles-OpenJDK8-1.12.2-build.0195.tgz].

> ControlFileWatchdogIntegrationTest.invokesRequestHandler_afterFileCreation 
> fails intermittently in CI
> -
>
> Key: GEODE-4355
> URL: https://issues.apache.org/jira/browse/GEODE-4355
> Project: Geode
>  Issue Type: Bug
>  Components: gfsh, tests
>Reporter: Kirk Lund
>Assignee: Kirk Lund
>Priority: Major
>  Labels: Flaky, pull-request-available
> Fix For: 1.5.0
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> This test usually passes but failed in these CI runs:
> * 
> https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/IntegrationTest/builds/98
> * 
> https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/IntegrationTest/builds/123



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-4355) ControlFileWatchdogIntegrationTest.invokesRequestHandler_afterFileCreation fails intermittently in CI

2018-01-25 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-4355?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16338904#comment-16338904
 ] 

ASF subversion and git services commented on GEODE-4355:


Commit 1c95035734f2e7266ccb01da401b1fbb13657331 in geode's branch 
refs/heads/feature/GEODE-3967 from [~apa...@the9muses.net]
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=1c95035 ]

GEODE-4355: use Awaitility to fix ControlFileWatchdogIntegrationTest flakiness 
(#1329)



> ControlFileWatchdogIntegrationTest.invokesRequestHandler_afterFileCreation 
> fails intermittently in CI
> -
>
> Key: GEODE-4355
> URL: https://issues.apache.org/jira/browse/GEODE-4355
> Project: Geode
>  Issue Type: Bug
>  Components: gfsh, tests
>Reporter: Kirk Lund
>Assignee: Kirk Lund
>Priority: Major
>  Labels: Flaky, pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> This test usually passes but failed in these CI runs:
> * 
> https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/IntegrationTest/builds/98
> * 
> https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/IntegrationTest/builds/123



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (GEODE-4355) ControlFileWatchdogIntegrationTest.invokesRequestHandler_afterFileCreation fails intermittently in CI

2018-01-24 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-4355?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16338281#comment-16338281
 ] 

ASF subversion and git services commented on GEODE-4355:


Commit 1c95035734f2e7266ccb01da401b1fbb13657331 in geode's branch 
refs/heads/develop from [~apa...@the9muses.net]
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=1c95035 ]

GEODE-4355: use Awaitility to fix ControlFileWatchdogIntegrationTest flakiness 
(#1329)



> ControlFileWatchdogIntegrationTest.invokesRequestHandler_afterFileCreation 
> fails intermittently in CI
> -
>
> Key: GEODE-4355
> URL: https://issues.apache.org/jira/browse/GEODE-4355
> Project: Geode
>  Issue Type: Bug
>  Components: gfsh, tests
>Reporter: Kirk Lund
>Assignee: Kirk Lund
>Priority: Major
>  Labels: Flaky, pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> This test usually passes but failed in these CI runs:
> * 
> https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/IntegrationTest/builds/98
> * 
> https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/IntegrationTest/builds/123



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (GEODE-4355) ControlFileWatchdogIntegrationTest.invokesRequestHandler_afterFileCreation fails intermittently in CI

2018-01-22 Thread Kirk Lund (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-4355?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16334881#comment-16334881
 ] 

Kirk Lund commented on GEODE-4355:
--

I see in the test code what causes the flakiness:
{noformat}
// assert
verify(requestHandler, timeout(TEN_MINUTES_MILLIS)).handleRequest();
assertThat(file).doesNotExist();
{noformat}
Should change to:
{noformat}
// assert
verify(requestHandler, timeout(TEN_MINUTES_MILLIS)).handleRequest();
await().atMost(10, MINUTES).until(() -> assertThat(file).doesNotExist());
{noformat}

> ControlFileWatchdogIntegrationTest.invokesRequestHandler_afterFileCreation 
> fails intermittently in CI
> -
>
> Key: GEODE-4355
> URL: https://issues.apache.org/jira/browse/GEODE-4355
> Project: Geode
>  Issue Type: Bug
>  Components: gfsh, tests
>Reporter: Kirk Lund
>Assignee: Kirk Lund
>Priority: Major
>  Labels: Flaky
>
> This test usually passes but failed in these CI runs:
> * 
> https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/IntegrationTest/builds/98
> * 
> https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/IntegrationTest/builds/123



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)