Skip to content

Commit

Permalink
fix: remove pubsublite from internal reporting (#3243)
Browse files Browse the repository at this point in the history
The `release_level` for the pubsublite Go client is incorrectly thought to be `GA` by a Drift table because of the presence of `cloud.google.com/go/pubsublite/apiv1`.

This PR proposes that we remove `cloud.google.com/go/pubsub/apiv1` entirely for internal reporting (see b/173748364 for context), until the manual library is released.

The alternative is to add the following to `.repo-metadata-full.json`:

```json
  "cloud.google.com/go/pubsublite": {
    "distribution_name": "",
    "description": "Cloud Pub/Sub Lite",
    "language": "Go",
    "client_library_type": "manual",
    "docs_url": "",
    "release_level": "unspecified"
  },
```

@codyoss @hongalex
  • Loading branch information
anguillanneuf committed Dec 2, 2020
1 parent 9cc1a66 commit 5344d93
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/gapicgen/generator/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,9 @@ var microgenGapicConfigs = []*microgenConfig{
importPath: "cloud.google.com/go/pubsublite/apiv1",
gRPCServiceConfigPath: "google/cloud/pubsublite/v1/pubsublite_grpc_service_config.json",
apiServiceConfigPath: "google/cloud/pubsublite/v1/gapic.yaml",
releaseLevel: "ga",
// Update to "ga" after the manual client (beta) for pubsublite is released.
// Also make sure the manual client is generated in .repo-metadata-full.json.
releaseLevel: "beta",
},
{
inputDirectoryPath: "google/cloud/automl/v1",
Expand Down

0 comments on commit 5344d93

Please sign in to comment.