⬆️ Upgrade nexus

This commit is contained in:
2025-03-29 15:22:44 +08:00
parent d3d7c4b573
commit cc7c96311f
3 changed files with 5 additions and 7 deletions

View File

@ -22,7 +22,7 @@ var (
Nx *nex.Conn
Px *pushcon.Conn
Rx *rx.MqConn
Ca *cachekit.CaConn
Ca *cachekit.Conn
)
const (
@ -64,7 +64,7 @@ func InitializeToNexus() error {
if err != nil {
return fmt.Errorf("error during initialize nexus rx module: %v", err)
}
Ca, err = cachekit.NewCaConn(Nx, time.Second*3)
Ca, err = cachekit.NewConn(Nx, time.Second*3)
if err != nil {
return fmt.Errorf("error during initialize nexus cache module: %v", err)
}