You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently started getting this error in production:
PERMISSION_DENIED: Google Cloud Pub/Sub API (Experimental) has not been used in project <my-project> before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/pubsub-experimental.googleapis.com/overview?project= <my-project> then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.
Visiting that URL is not helpful. It seems that Google has turned off "experimental" endpoints, however, I do not explictly call experimental endpoints in my code.
Sets "pubsub-experimental.googleapis.com" as the default RPC endpoint for PubSub subscription calls. I'm specifically referencing the 0.2.6 release, as this is the most recent version in Maven Central, but this setting is also present in master as of now.
The text was updated successfully, but these errors were encountered:
I recently started getting this error in production:
PERMISSION_DENIED: Google Cloud Pub/Sub API (Experimental) has not been used in project <my-project> before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/pubsub-experimental.googleapis.com/overview?project= <my-project> then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.
Visiting that URL is not helpful. It seems that Google has turned off "experimental" endpoints, however, I do not explictly call experimental endpoints in my code.
However, this file: https://github.com/GoogleCloudPlatform/gcloud-java/blob/v0.2.6/gcloud-java-pubsub/src/main/java/com/google/cloud/pubsub/spi/v1/SubscriberSettings.java#L106
Sets
"pubsub-experimental.googleapis.com"
as the default RPC endpoint for PubSub subscription calls. I'm specifically referencing the0.2.6
release, as this is the most recent version in Maven Central, but this setting is also present inmaster
as of now.The text was updated successfully, but these errors were encountered: