This is an automated email from the ASF dual-hosted git repository.
robocanic pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/dubbo-admin.git
The following commit(s) were added to refs/heads/develop by this push:
new ecd2bdbf fix counter bug (#1369)
ecd2bdbf is described below
commit ecd2bdbfb2a38875063b7e416e5b79ff4260ab82
Author: WyRainBow <[email protected]>
AuthorDate: Sat Dec 20 12:32:42 2025 +0800
fix counter bug (#1369)
---
pkg/core/bootstrap/init.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/pkg/core/bootstrap/init.go b/pkg/core/bootstrap/init.go
index 8236bdcc..db79036f 100644
--- a/pkg/core/bootstrap/init.go
+++ b/pkg/core/bootstrap/init.go
@@ -20,6 +20,7 @@ package bootstrap
// import all components registered by init function
import (
_ "github.com/apache/dubbo-admin/pkg/console"
+ _ "github.com/apache/dubbo-admin/pkg/console/counter"
_ "github.com/apache/dubbo-admin/pkg/core/discovery"
_ "github.com/apache/dubbo-admin/pkg/core/engine"
_ "github.com/apache/dubbo-admin/pkg/core/events"