-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat : New Relay rest API for autosharding #822
Conversation
Jenkins BuildsClick to see older builds (19)
|
|
||
err := r.node.Relay().Unsubscribe(req.Context(), protocol.NewContentFilter("", cTopics...)) | ||
if err != nil { | ||
r.log.Error("unsubscribing from topics", zap.Strings("contentTopics", cTopics), zap.Error(err)) |
Check failure
Code scanning / CodeQL
Log entries created from user input
var err error | ||
_, err = r.node.Relay().Subscribe(r.node.Relay().Context(), protocol.NewContentFilter("", cTopics...)) | ||
if err != nil { | ||
r.log.Error("subscribing to topics", zap.Strings("contentTopics", cTopics), zap.Error(err)) |
Check failure
Code scanning / CodeQL
Log entries created from user input
|
||
_, err = r.node.Relay().Publish(req.Context(), message) | ||
if err != nil { | ||
r.log.Error("publishing message", zap.Error(err)) |
Check failure
Code scanning / CodeQL
Log entries created from user input
@harsh-98 , can't merge this as you have requested changes. |
lgtm. |
Description
Added new REST relay APIs for autosharding.
Changes
Tests
Verified all new API's +ve and -ve scenarios by running a node locally and connecting another node.