From 67d2039ba0e8adec90e23a2dcdaf42f19ef69dad Mon Sep 17 00:00:00 2001 From: Chris Hiestand Date: Thu, 25 Jun 2015 00:41:29 -0700 Subject: [PATCH] docs: pubsub delete topic In v1beta2, deleting a topic does *not* delete corresponding subscriptions "Deletes the topic with the given name. Returns NOT_FOUND if the topic does not exist. After a topic is deleted, a new topic may be created with the same name; this is an entirely new topic with none of the old configuration or subscriptions. Existing subscriptions to this topic are not deleted." source: --- lib/pubsub/topic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pubsub/topic.js b/lib/pubsub/topic.js index 87938b422b0..39d045b23cf 100644 --- a/lib/pubsub/topic.js +++ b/lib/pubsub/topic.js @@ -206,7 +206,7 @@ Topic.prototype.publish = function(messages, callback) { }; /** - * Delete the topic. This will also delete any subscriptions to this topic. + * Delete the topic. This will not delete subscriptions to this topic. * * @param {function=} callback - The callback function. *