Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for reloadConfiguration (0.09 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

        public void test_reloadConfiguration() {
            try {
                systemHelper.reloadConfiguration();
                assertTrue(true);
            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        public void test_reloadConfiguration_withResetJobs() {
            try {
                systemHelper.reloadConfiguration(true);
                assertTrue(true);
            } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Reloads the application configuration.
         */
        public void reloadConfiguration() {
            reloadConfiguration(true);
        }
    
        /**
         * Reloads the application configuration.
         *
         * @param resetJobs true to reset scheduled jobs.
         */
        public void reloadConfiguration(final boolean resetJobs) {
            ComponentUtil.getSearchEngineClient().refresh();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                }
            }).execute()) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Bulk Response:\n{}", response.getContentAsString());
                }
                systemHelper.reloadConfiguration(resetJobs.get());
            } catch (final Exception e) {
                logger.warn("Failed to process bulk file: {}", fileName, e);
            } finally {
                deleteTempFile(tempFile);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
Back to top