diff -r bb89bc4d6689 -r e17143e28542 src/jdk.jfr/share/classes/jdk/jfr/internal/Repository.java --- a/src/jdk.jfr/share/classes/jdk/jfr/internal/Repository.java Thu Sep 19 17:33:18 2019 -0700 +++ b/src/jdk.jfr/share/classes/jdk/jfr/internal/Repository.java Sat Sep 21 12:10:52 2019 +0200 @@ -56,7 +56,12 @@ return instance; } - public synchronized void setBasePath(SafePath baseLocation) throws IOException { + public synchronized void setBasePath(SafePath baseLocation) throws Exception { + + if(baseLocation.equals(this.baseLocation)) { + Logger.log(LogTag.JFR, LogLevel.INFO, "Same base repository path " + baseLocation.toString() + " is set"); + return; + } // Probe to see if repository can be created, needed for fail fast // during JVM startup or JFR.configure this.repository = createRepository(baseLocation);