Fix the uuid field in GRPCConfigWatcherRegister is not updated. (#6115)

This commit is contained in:
zifeihan 2021-01-01 18:12:36 +08:00 committed by GitHub
parent 1b1f08511c
commit ff2ab69a66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@ Release Notes.
* Add JavaScript component ID. * Add JavaScript component ID.
* Fix CVE of UninstrumentedGateways in Dynamic Configuration activation. * Fix CVE of UninstrumentedGateways in Dynamic Configuration activation.
* Improve query performance in storage-influxdb-plugin. * Improve query performance in storage-influxdb-plugin.
* Fix the uuid field in GRPCConfigWatcherRegister is not updated.
#### UI #### UI
* Fix un-removed tags in trace query. * Fix un-removed tags in trace query.

View File

@ -67,6 +67,7 @@ public class GRPCConfigWatcherRegister extends ConfigWatcherRegister {
table.add(new ConfigTable.ConfigItem(name, config.getValue())); table.add(new ConfigTable.ConfigItem(name, config.getValue()));
} }
}); });
this.uuid = responseUuid;
} catch (Exception e) { } catch (Exception e) {
LOGGER.error("Remote config center [" + settings + "] is not available.", e); LOGGER.error("Remote config center [" + settings + "] is not available.", e);
} }