jchen21 commented on code in PR #7730: URL: https://github.com/apache/geode/pull/7730#discussion_r887261495
########## geode-assembly/src/upgradeTest/java/org/apache/geode/session/tests/TomcatSessionBackwardsCompatibilityTestBase.java: ########## @@ -105,7 +108,10 @@ protected void startServer(String name, String classPath, int locatorPort) throw } protected void startLocator(String name, String classPath, int port) throws Exception { - locatorDir = tempFolder.newFolder("locator").getPath(); + File locatorFile = new File("locator_dir_" + this.getClass().getSimpleName() + "_" + + testName.getMethodName().replace("[", "").replace("]", "")); + locatorFile.mkdir(); Review Comment: Good point. I have added an IOException. -- 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: notifications-unsubscr...@geode.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org