wernerdv commented on code in PR #13540:
URL: https://github.com/apache/ignite/pull/13540#discussion_r3986458295


##########
modules/compatibility/src/test/java/org/apache/ignite/compatibility/testframework/testcontainers/IgniteContainer.java:
##########
@@ -142,29 +125,41 @@ public class IgniteContainer extends 
GenericContainer<IgniteContainer> {
     /** Consistent ID. */
     private final String consistentId;
 
-    /** Path to work directory. */
-    private final String workDirPath;
+    /** Ignite root directory in container, computed from {@link 
#rootDirPath()}. */
+    private final String rootDir;
+
+    /** Ignite libs directory in container. */
+    private final String libsDirPath;
+
+    /** Config path in container. */
+    private final String cfgPath;
 
     /**
      * @param imageName Image name.
      * @param net Network.
      * @param hostname Hostname.
      * @param consistentId Consistent ID.
-     * param idx Node index.
+     * @param idx Node index.
      */
     public IgniteContainer(String imageName, Network net, String hostname, 
String consistentId, int idx) throws Exception {
         super(DockerImageName.parse(imageName));
 
         this.hostname = hostname;
         this.consistentId = consistentId;
-        workDirPath = WORK_DIR_PATH + "/" + hostname;
+        rootDir = rootDirPath();

Review Comment:
   Moved into configure().



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to