⬆️ Upgrade nexus to fix bug

This commit is contained in:
LittleSheep 2025-03-29 16:00:24 +08:00
parent c8abf6647a
commit 7a7d57c0d7
3 changed files with 5 additions and 3 deletions

2
go.mod
View File

@ -4,7 +4,7 @@ go 1.23.2
require (
git.solsynth.dev/hypernet/insight v0.0.0-20250129172551-974266b2c1d2
git.solsynth.dev/hypernet/nexus v0.0.0-20250329053929-488793a2dc56
git.solsynth.dev/hypernet/nexus v0.0.0-20250329075932-d5422ab5b04c
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47
git.solsynth.dev/hypernet/passport v0.0.0-20250316041213-ecaace561632
git.solsynth.dev/hypernet/pusher v0.0.0-20250216145944-5fb769823a88

2
go.sum
View File

@ -4,6 +4,8 @@ git.solsynth.dev/hypernet/insight v0.0.0-20250129172551-974266b2c1d2 h1:dPBdssDI
git.solsynth.dev/hypernet/insight v0.0.0-20250129172551-974266b2c1d2/go.mod h1:NKSTeRc1mgg726iaCLEBoYEcVroIrGU5w2rnGf92LWE=
git.solsynth.dev/hypernet/nexus v0.0.0-20250329053929-488793a2dc56 h1:SnT9NVcXQ1WDka9kKAA+lH/r2UJouND7FDugu4ZZwLc=
git.solsynth.dev/hypernet/nexus v0.0.0-20250329053929-488793a2dc56/go.mod h1:5tk62VQ1DcbR0EAN2jAOqYxHiegUPEC805JlfQ/G19I=
git.solsynth.dev/hypernet/nexus v0.0.0-20250329075932-d5422ab5b04c h1:XgdTgJxSAQuCbiG15hN5pY6chzcz8sX3Onm2itS+Ufs=
git.solsynth.dev/hypernet/nexus v0.0.0-20250329075932-d5422ab5b04c/go.mod h1:5tk62VQ1DcbR0EAN2jAOqYxHiegUPEC805JlfQ/G19I=
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47 h1:fvu+bNKPTNtQocssnKbEZ66MqR0iBfAxY3HwlqnmYyE=
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47/go.mod h1:jvxq2qftz2v72x+24+cTFJdQKr9eHQTdk3KVR7cx36s=
git.solsynth.dev/hypernet/passport v0.0.0-20250316041213-ecaace561632 h1:rO0aFXOdNIHUx13UE3Q2RjeTdgouIOCMYlOycgdDUNg=

View File

@ -19,7 +19,7 @@ import (
var (
Nx *nex.Conn
Px *pushcon.Conn
Ca *cachekit.CaConn
Ca *cachekit.Conn
)
func InitializeToNexus() error {
@ -53,7 +53,7 @@ func InitializeToNexus() error {
return fmt.Errorf("error during initialize pushcon: %v", err)
}
Ca, err = cachekit.NewCaConn(Nx, 3*time.Second)
Ca, err = cachekit.NewConn(Nx, 3*time.Second)
if err != nil {
return fmt.Errorf("error during initialize cachekit: %v", err)
}