From 139bbcd9c513e5bd6fd61a60e6a1b64db01bc761 Mon Sep 17 00:00:00 2001 From: rimadeodhar Date: Mon, 9 Dec 2024 15:31:37 -0800 Subject: [PATCH] roachtest: update mt-upgrade test owner to db-server This PR updates the test ownership for the multitenant-upgrade test to the DB Server team. All future test failures will be routed to `t-db-server` for triage. Epic: none Release note: none --- pkg/cmd/roachtest/registry/owners.go | 2 +- pkg/cmd/roachtest/tests/multitenant_upgrade.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/roachtest/registry/owners.go b/pkg/cmd/roachtest/registry/owners.go index 950666d9ca65..1278f0b3cab1 100644 --- a/pkg/cmd/roachtest/registry/owners.go +++ b/pkg/cmd/roachtest/registry/owners.go @@ -25,7 +25,7 @@ const ( OwnerAdmissionControl Owner = `admission-control` OwnerObservability Owner = `obs-prs` OwnerObservabilityIndia Owner = `obs-india-prs` - OwnerServer Owner = `server` // not currently staffed + OwnerServer Owner = `server` OwnerSQLFoundations Owner = `sql-foundations` OwnerMigrations Owner = `migrations` OwnerProductSecurity Owner = `product-security` diff --git a/pkg/cmd/roachtest/tests/multitenant_upgrade.go b/pkg/cmd/roachtest/tests/multitenant_upgrade.go index 0a002acd1274..3c1b25368635 100644 --- a/pkg/cmd/roachtest/tests/multitenant_upgrade.go +++ b/pkg/cmd/roachtest/tests/multitenant_upgrade.go @@ -32,7 +32,7 @@ func registerMultiTenantUpgrade(r registry.Registry) { Cluster: r.MakeClusterSpec(7), CompatibleClouds: registry.CloudsWithServiceRegistration, Suites: registry.Suites(registry.Nightly), - Owner: registry.OwnerDisasterRecovery, + Owner: registry.OwnerServer, Run: func(ctx context.Context, t test.Test, c cluster.Cluster) { runMultitenantUpgrade(ctx, t, c) },