View | Details | Raw Unified | Return to bug 42678
Collapse All | Expand All

(-)trunk/java/org/apache/catalina/startup/HostConfig.java (-1 / +1 lines)
Lines 607-613 Link Here
607
                    docBase = new File(appBase(), context.getDocBase());
607
                    docBase = new File(appBase(), context.getDocBase());
608
                }
608
                }
609
                // If external docBase, register .xml as redeploy first
609
                // If external docBase, register .xml as redeploy first
610
                if (!docBase.getCanonicalPath().startsWith(appBase().getAbsolutePath())) {
610
                if (!docBase.getCanonicalPath().startsWith(appBase().getAbsolutePath() + File.separator)) {
611
                    isExternal = true;
611
                    isExternal = true;
612
                    deployedApp.redeployResources.put
612
                    deployedApp.redeployResources.put
613
                        (contextXml.getAbsolutePath(), new Long(contextXml.lastModified()));
613
                        (contextXml.getAbsolutePath(), new Long(contextXml.lastModified()));

Return to bug 42678