ARTEMIS-601 Fixing use of spaces on the server and reloading
This commit is contained in:
parent
6b0c089017
commit
754976f8c1
|
@ -2358,7 +2358,7 @@ public class ActiveMQServerImpl implements ActiveMQServer {
|
|||
|
||||
}
|
||||
|
||||
private final class ConfigurationFileReloader extends Thread {
|
||||
private final class ConfigurationFileReloader implements Runnable {
|
||||
long lastModified;
|
||||
boolean first = true;
|
||||
ActiveMQServer server;
|
||||
|
@ -2371,7 +2371,7 @@ public class ActiveMQServerImpl implements ActiveMQServer {
|
|||
public void run() {
|
||||
try {
|
||||
URL url = server.getConfiguration().getConfigurationUrl();
|
||||
long currentLastModified = new File(url.toURI()).lastModified();
|
||||
long currentLastModified = new File(url.getPath()).lastModified();
|
||||
if (first) {
|
||||
first = false;
|
||||
lastModified = currentLastModified;
|
||||
|
|
Loading…
Reference in New Issue