Stop source-name loop on Google 403

A token without admin.directory.customer.readonly makes
Customers.Get return 403 forever. Treat that as terminal so
the source-name worker keeps the generic name and stops
retrying.

Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
Bryan Frimin
2026-06-16 16:51:55 +02:00
parent 18be2b5772
commit a6ed64caaf
2 changed files with 70 additions and 0 deletions

View File

@@ -18,12 +18,14 @@ import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"net/http"
"net/url"
"go.probo.inc/probo/pkg/connector"
admin "google.golang.org/api/admin/directory/v1"
"google.golang.org/api/googleapi"
"google.golang.org/api/option"
)
@@ -87,6 +89,11 @@ func (r *googleWorkspaceNameResolver) ResolveInstanceName(ctx context.Context) (
customer, err := adminService.Customers.Get("my_customer").Context(ctx).Do()
if err != nil {
var gerr *googleapi.Error
if errors.As(err, &gerr) && gerr.Code == http.StatusForbidden {
return "", nil
}
return "", fmt.Errorf("cannot fetch google workspace customer: %w", err)
}