Skip to content

Commit 3f140fb

Browse files
fix: removed beta api annotation for ordering keys (#1094)
* fix: removed ordering beta api tag * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 9484998 commit 3f140fb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ implementation 'com.google.cloud:google-cloud-pubsub'
5858
If you are using Gradle without BOM, add this to your dependencies
5959

6060
```Groovy
61-
implementation 'com.google.cloud:google-cloud-pubsub:1.116.3'
61+
implementation 'com.google.cloud:google-cloud-pubsub:1.116.4'
6262
```
6363

6464
If you are using SBT, add this to your dependencies
6565

6666
```Scala
67-
libraryDependencies += "com.google.cloud" % "google-cloud-pubsub" % "1.116.3"
67+
libraryDependencies += "com.google.cloud" % "google-cloud-pubsub" % "1.116.4"
6868
```
6969

7070
## Authentication

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,6 @@ public void run() {
317317
*
318318
* @param key The key for which to resume publishing.
319319
*/
320-
@BetaApi("Ordering is not yet fully supported and requires special project enablements.")
321320
public void resumePublish(String key) {
322321
Preconditions.checkState(!shutdown.get(), "Cannot publish on a shut-down publisher.");
323322
sequentialExecutor.resumePublish(key);
@@ -800,7 +799,6 @@ public Builder setRetrySettings(RetrySettings retrySettings) {
800799
}
801800

802801
/** Sets the message ordering option. */
803-
@BetaApi("Ordering is not yet fully supported and requires special project enablements.")
804802
public Builder setEnableMessageOrdering(boolean enableMessageOrdering) {
805803
this.enableMessageOrdering = enableMessageOrdering;
806804
return this;

0 commit comments

Comments
 (0)