From cd825aadd96df409014ae95c279ec324ad75392a Mon Sep 17 00:00:00 2001 From: Miral Gadani Date: Fri, 6 Oct 2023 10:17:30 -0400 Subject: [PATCH] roachtest: apt-get update for asyncpg This is required so that packages can be found in azure. Epic: CC-25185 Release note: None --- pkg/cmd/roachtest/tests/asyncpg.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/cmd/roachtest/tests/asyncpg.go b/pkg/cmd/roachtest/tests/asyncpg.go index def30e267360..21c176398ac6 100644 --- a/pkg/cmd/roachtest/tests/asyncpg.go +++ b/pkg/cmd/roachtest/tests/asyncpg.go @@ -79,6 +79,12 @@ func registerAsyncpg(r registry.Registry) { t.Fatal(err) } + if err := repeatRunE( + ctx, t, c, node, "update apt-get", `sudo apt-get update`, + ); err != nil { + t.Fatal(err) + } + if err := repeatRunE( ctx, t,