Fixed DirServer shutdown bug.
authorFredrik Tolf <fredrik@dolda2000.com>
Sat, 11 Sep 2010 04:02:49 +0000 (06:02 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Sat, 11 Sep 2010 04:02:49 +0000 (06:02 +0200)
src/dolda/jsvc/scgi/DirServer.java

index 7920977..8f19d8a 100644 (file)
@@ -24,7 +24,7 @@ public class DirServer extends Server {
            String act = "loaded %s as %s";
            if(ctx != null) {
                if(ctx.mtime < file.lastModified()) {
-                   ctx.tg.destroy();
+                   ctx.tg.shutdown();
                    contexts.remove(file);
                    ctx = null;
                    act = "reloaded %s as %s";