We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cdc12c commit d9c4a75Copy full SHA for d9c4a75
fluss-server/src/main/java/org/apache/fluss/server/tablet/TabletServer.java
@@ -382,6 +382,10 @@ CompletableFuture<Void> stopServices() {
382
}
383
384
try {
385
+ if (dynamicConfigManager != null) {
386
+ dynamicConfigManager.close();
387
+ }
388
+
389
if (zkClient != null) {
390
zkClient.close();
391
@@ -423,10 +427,6 @@ CompletableFuture<Void> stopServices() {
423
427
authorizer.close();
424
428
425
429
426
- if (dynamicConfigManager != null) {
- dynamicConfigManager.close();
- }
-
430
if (lakeCatalogDynamicLoader != null) {
431
lakeCatalogDynamicLoader.close();
432
0 commit comments