We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
elastic-job-console控制端修改作业日志的数据库连接后日志还是会写入原来的数据库;虽然zk中的配置已经更新了,但是没有清除listeners的缓存;
`
private final ConcurrentHashMap<String, JobEventListener> listeners = new ConcurrentHashMap<>(); void register(final Collection<JobEventConfiguration> jobEventConfigs) { for (JobEventConfiguration each : jobEventConfigs) { register(each.createJobEventListener()); } } private void register(final JobEventListener listener) { if (null != listener && null == listeners.putIfAbsent(listener.getIdentity(), listener)) { eventBus.register(listener); } }
The text was updated successfully, but these errors were encountered:
ebf81a6
No branches or pull requests
elastic-job-console控制端修改作业日志的数据库连接后日志还是会写入原来的数据库;虽然zk中的配置已经更新了,但是没有清除listeners的缓存;
`
`
The text was updated successfully, but these errors were encountered: