You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/commands/pubsub.go
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ This command outputs data in the following encodings:
74
74
cmds.StringArg("topic", true, false, "String name of topic to subscribe to."),
75
75
},
76
76
Options: []cmds.Option{
77
-
cmds.BoolOption(pubsubDiscoverOptionName, "try to discover other peers subscribed to the same topic"),
77
+
cmds.BoolOption(pubsubDiscoverOptionName, "Deprecated option to instruct pubsub to discovery peers for the topic. Discovery is now built into pubsub."),
78
78
},
79
79
Run: func(req*cmds.Request, res cmds.ResponseEmitter, env cmds.Environment) error {
80
80
api, err:=cmdenv.GetApi(env, req)
@@ -83,9 +83,7 @@ This command outputs data in the following encodings:
0 commit comments