Skip to content

Commit 9c113c3

Browse files
chore: Remove note that ordering keys requires enablements.
1 parent 0ffda7c commit 9c113c3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1

google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/Publisher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ public void run() {
305305
*
306306
* @param key The key for which to resume publishing.
307307
*/
308-
@BetaApi("Ordering is not yet fully supported and requires special project enablements.")
308+
@BetaApi
309309
public void resumePublish(String key) {
310310
Preconditions.checkState(!shutdown.get(), "Cannot publish on a shut-down publisher.");
311311
sequentialExecutor.resumePublish(key);
@@ -765,7 +765,7 @@ public Builder setRetrySettings(RetrySettings retrySettings) {
765765
}
766766

767767
/** Sets the message ordering option. */
768-
@BetaApi("Ordering is not yet fully supported and requires special project enablements.")
768+
@BetaApi
769769
public Builder setEnableMessageOrdering(boolean enableMessageOrdering) {
770770
this.enableMessageOrdering = enableMessageOrdering;
771771
return this;

0 commit comments

Comments
 (0)