@@ -16,14 +16,14 @@ import (
16
16
)
17
17
18
18
var PubsubCmd = & cmds.Command {
19
- Status : cmds .Experimental ,
19
+ Status : cmds .Deprecated ,
20
20
Helptext : cmds.HelpText {
21
21
Tagline : "An experimental publish-subscribe system on ipfs." ,
22
22
ShortDescription : `
23
23
ipfs pubsub allows you to publish messages to a given topic, and also to
24
24
subscribe to new messages on a given topic.
25
25
26
- EXPERIMENTAL FEATURE
26
+ DEPRECATED FEATURE (see https://github.com/ipfs/kubo/issues/9717)
27
27
28
28
It is not intended in its current state to be used in a production
29
29
environment. To use, the daemon must be run with
@@ -46,13 +46,13 @@ type pubsubMessage struct {
46
46
}
47
47
48
48
var PubsubSubCmd = & cmds.Command {
49
- Status : cmds .Experimental ,
49
+ Status : cmds .Deprecated ,
50
50
Helptext : cmds.HelpText {
51
51
Tagline : "Subscribe to messages on a given topic." ,
52
52
ShortDescription : `
53
53
ipfs pubsub sub subscribes to messages on a given topic.
54
54
55
- EXPERIMENTAL FEATURE
55
+ DEPRECATED FEATURE (see https://github.com/ipfs/kubo/issues/9717)
56
56
57
57
It is not intended in its current state to be used in a production
58
58
environment. To use, the daemon must be run with
@@ -145,14 +145,14 @@ TOPIC AND DATA ENCODING
145
145
}
146
146
147
147
var PubsubPubCmd = & cmds.Command {
148
- Status : cmds .Experimental ,
148
+ Status : cmds .Deprecated ,
149
149
Helptext : cmds.HelpText {
150
150
Tagline : "Publish data to a given pubsub topic." ,
151
151
ShortDescription : `
152
152
ipfs pubsub pub publishes a message to a specified topic.
153
153
It reads binary data from stdin or a file.
154
154
155
- EXPERIMENTAL FEATURE
155
+ DEPRECATED FEATURE (see https://github.com/ipfs/kubo/issues/9717)
156
156
157
157
It is not intended in its current state to be used in a production
158
158
environment. To use, the daemon must be run with
@@ -201,13 +201,13 @@ HTTP RPC ENCODING
201
201
}
202
202
203
203
var PubsubLsCmd = & cmds.Command {
204
- Status : cmds .Experimental ,
204
+ Status : cmds .Deprecated ,
205
205
Helptext : cmds.HelpText {
206
206
Tagline : "List subscribed topics by name." ,
207
207
ShortDescription : `
208
208
ipfs pubsub ls lists out the names of topics you are currently subscribed to.
209
209
210
- EXPERIMENTAL FEATURE
210
+ DEPRECATED FEATURE (see https://github.com/ipfs/kubo/issues/9717)
211
211
212
212
It is not intended in its current state to be used in a production
213
213
environment. To use, the daemon must be run with
@@ -273,15 +273,15 @@ func safeTextListEncoder(req *cmds.Request, w io.Writer, list *stringList) error
273
273
}
274
274
275
275
var PubsubPeersCmd = & cmds.Command {
276
- Status : cmds .Experimental ,
276
+ Status : cmds .Deprecated ,
277
277
Helptext : cmds.HelpText {
278
278
Tagline : "List peers we are currently pubsubbing with." ,
279
279
ShortDescription : `
280
280
ipfs pubsub peers with no arguments lists out the pubsub peers you are
281
281
currently connected to. If given a topic, it will list connected peers who are
282
282
subscribed to the named topic.
283
283
284
- EXPERIMENTAL FEATURE
284
+ DEPRECATED FEATURE (see https://github.com/ipfs/kubo/issues/9717)
285
285
286
286
It is not intended in its current state to be used in a production
287
287
environment. To use, the daemon must be run with
0 commit comments