From ea29158980238f0364fcd6f990853d3ee7ab7648 Mon Sep 17 00:00:00 2001 From: Alex Tugarev Date: Fri, 20 Oct 2023 11:12:27 +0200 Subject: [PATCH] Update PAPI component, should cause a new build (#18963) * Update README.md in papi * Touch a go file in papi --- components/public-api-server/README.md | 7 +------ components/public-api-server/pkg/oidc/service_test.go | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/components/public-api-server/README.md b/components/public-api-server/README.md index 7cf816d6bf00ea..b5ad5973380b82 100644 --- a/components/public-api-server/README.md +++ b/components/public-api-server/README.md @@ -19,11 +19,6 @@ from development environments and will enable richer integrations with Integrate The public API will initially be offered as a gRPC service. Clients for various languages will be available. At the moment, the API is in early stages and clients are not available. -## Roadmap -The roadmap and progress towards a stable release of the API is tracked in [Epic: Public Gitpod API](https://github.com/gitpod-io/gitpod/issues/7900). - - ## Architecture -* The API will be exposed on `api.gitpod.io` or `api.` for self-hosted or managed installations. +* The API will be exposed on `api.gitpod.io` or `api.` for Dedicated installations. * The API is structured into services with definitions available in [components/public-api/gitpod/](../public-api/gitpod) as protobuf definitions. - diff --git a/components/public-api-server/pkg/oidc/service_test.go b/components/public-api-server/pkg/oidc/service_test.go index ed8fb796881569..2c3fcbefb6bdd4 100644 --- a/components/public-api-server/pkg/oidc/service_test.go +++ b/components/public-api-server/pkg/oidc/service_test.go @@ -144,7 +144,7 @@ func TestGetClientConfigFromStartRequest(t *testing.T) { func TestGetClientConfigFromStartRequestSingleOrg(t *testing.T) { issuer := newFakeIdP(t) service, dbConn := setupOIDCServiceForTests(t) - // make sure no other teams are in the db anymore + // make sure no other organizations are in the db anymore dbConn.Delete(&db.Organization{}, "1=1") config, team := createConfig(t, dbConn, &ClientConfig{ Issuer: issuer,