Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsannm committed Dec 23, 2023
1 parent de28499 commit 14f2d5a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kit/ctx_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var ErrClusterNotSet = errors.New("cluster is not set")

// ClusterStore returns a key-value store which is shared between different instances of the cluster.
//
// NOTE: If you don't set any Cluster for your EdgeServer then this method will panic.
// NOTE: If you don't set any Cluster for your EdgeServer, then this method will panic.
func (ctx *Context) ClusterStore() ClusterStore {
if ctx.sb == nil {
panic(ErrClusterNotSet)
Expand Down
4 changes: 4 additions & 0 deletions rony/setup_unary.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ func REST(method, path string, opt ...UnarySelectorOption) UnaryOption {
}
}

func ALL(path string, opt ...UnarySelectorOption) UnaryOption {
return REST("*", path, opt...)
}

func GET(path string, opt ...UnarySelectorOption) UnaryOption {
return REST("GET", path, opt...)
}
Expand Down
2 changes: 1 addition & 1 deletion std/clusters/rediscluster/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.20

require (
github.com/clubpay/ronykit/kit v0.11.29
github.com/redis/go-redis/v9 v9.3.0
github.com/redis/go-redis/v9 v9.3.1
)

require (
Expand Down
4 changes: 2 additions & 2 deletions std/clusters/rediscluster/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ github.com/onsi/gomega v1.29.0 h1:KIA/t2t5UBzoirT4H9tsML45GEbo3ouUnBHsCfD2tVg=
github.com/pkg/profile v1.6.0/go.mod h1:qBsxPvzyUincmltOk6iyRVxHYg4adc0OFOv72ZdLa18=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/redis/go-redis/v9 v9.3.0 h1:RiVDjmig62jIWp7Kk4XVLs0hzV6pI3PyTnnL0cnn0u0=
github.com/redis/go-redis/v9 v9.3.0/go.mod h1:hdY0cQFCN4fnSYT6TkisLufl/4W5UIXyv0b/CLO2V2M=
github.com/redis/go-redis/v9 v9.3.1 h1:KqdY8U+3X6z+iACvumCNxnoluToB+9Me+TvyFa21Mds=
github.com/redis/go-redis/v9 v9.3.1/go.mod h1:hdY0cQFCN4fnSYT6TkisLufl/4W5UIXyv0b/CLO2V2M=
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.4.3 h1:utMvzDsuh3suAEnhH0RdHmoPbU648o6CvXxTx4SBMOw=
github.com/rivo/uniseg v0.4.3/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
Expand Down

0 comments on commit 14f2d5a

Please sign in to comment.