Skip to content

Commit

Permalink
fix: removed beta api annotation for ordering keys (#1094)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
mmicatka and gcf-owl-bot[bot] committed Apr 20, 2022
1 parent 9484998 commit 3f140fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -58,13 +58,13 @@ implementation 'com.google.cloud:google-cloud-pubsub'
If you are using Gradle without BOM, add this to your dependencies

```Groovy
implementation 'com.google.cloud:google-cloud-pubsub:1.116.3'
implementation 'com.google.cloud:google-cloud-pubsub:1.116.4'
```

If you are using SBT, add this to your dependencies

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-pubsub" % "1.116.3"
libraryDependencies += "com.google.cloud" % "google-cloud-pubsub" % "1.116.4"
```

## Authentication
Expand Down
Expand Up @@ -317,7 +317,6 @@ public void run() {
*
* @param key The key for which to resume publishing.
*/
@BetaApi("Ordering is not yet fully supported and requires special project enablements.")
public void resumePublish(String key) {
Preconditions.checkState(!shutdown.get(), "Cannot publish on a shut-down publisher.");
sequentialExecutor.resumePublish(key);
Expand Down Expand Up @@ -800,7 +799,6 @@ public Builder setRetrySettings(RetrySettings retrySettings) {
}

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

0 comments on commit 3f140fb

Please sign in to comment.