public void init()

in saml-authentication-server/src/main/java/jetbrains/buildServer/auth/saml/plugin/SamlPluginSettingsStorageImpl.java [40:51]


    public void init() throws IOException {
        load();

        samlPluginSettingsFileWatcher.registerListener(s -> {
            try {
                reload();
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
        });
        samlPluginSettingsFileWatcher.start();
    }