You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2022/04/01 23:34:41 UTC

[geode-examples] branch develop updated: GEODE-10151: Extract redis before start

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

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-examples.git


The following commit(s) were added to refs/heads/develop by this push:
     new 750e6e6  GEODE-10151: Extract redis before start
750e6e6 is described below

commit 750e6e6e0f75913e137548ecb7618d5b04ec9de1
Author: Dan Smith <da...@vmware.com>
AuthorDate: Fri Apr 1 16:33:40 2022 -0700

    GEODE-10151: Extract redis before start
    
    The redis distribution needs to be extracted *before* starting the geode
    servers, to ensure it's actually available to be on the classpath.
    
    Before this change, the tests would sometimes pass depending on the order of
    execution of these tasks.
---
 geodeForRedis/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geodeForRedis/build.gradle b/geodeForRedis/build.gradle
index b3739e1..1abef25 100644
--- a/geodeForRedis/build.gradle
+++ b/geodeForRedis/build.gradle
@@ -33,4 +33,4 @@ task installRedis(type: Copy) {
     includeEmptyDirs false
 }
 
-run.dependsOn(installRedis)
+start.dependsOn(installRedis)