We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be24baf commit 6310814Copy full SHA for 6310814
acceptance-tests/dsl/src/main/java/org/hyperledger/besu/tests/acceptance/dsl/node/BesuNode.java
@@ -786,6 +786,21 @@ public void stop() {
786
nodeRequests.shutdown();
787
nodeRequests = null;
788
}
789
+
790
+ deleteRuntimeFiles();
791
+ }
792
793
+ private void deleteRuntimeFiles() {
794
+ try {
795
+ Files.deleteIfExists(homeDirectory.resolve("besu.networks"));
796
+ } catch (IOException e) {
797
+ LOG.error("Failed to clean up besu.networks file in {}", homeDirectory, e);
798
799
800
+ Files.deleteIfExists(homeDirectory.resolve("besu.ports"));
801
802
+ LOG.error("Failed to clean up besu.ports file in {}", homeDirectory, e);
803
804
805
806
@Override
0 commit comments