DBZ-5138 Fix tracking MBean registration

This commit is contained in:
Chris Cranford 2022-05-17 19:14:35 -04:00 committed by Chris Cranford
parent d56f6ef6e0
commit e075d6b2eb

View File

@ -83,6 +83,7 @@ public synchronized void register() {
for (int attempt = 1; attempt <= REGISTRATION_RETRIES; attempt++) {
try {
mBeanServer.registerMBean(this, name);
registered = true;
break;
}
catch (InstanceAlreadyExistsException e) {