From 8c4b6956ba7e377ae2f77322c333b9f499aa3bb4 Mon Sep 17 00:00:00 2001 From: Aaron Abbott Date: Thu, 4 Aug 2022 12:33:49 -0400 Subject: [PATCH] test(profiler): Bump default imageFamily to debian 10 (#6474) Co-authored-by: Maggie Nolan --- profiler/proftest/proftest.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiler/proftest/proftest.go b/profiler/proftest/proftest.go index a4bff522b23b..f67e313722c1 100644 --- a/profiler/proftest/proftest.go +++ b/profiler/proftest/proftest.go @@ -225,14 +225,14 @@ func (pr *ProfileResponse) HasSourceFile(filename string) error { // StartInstance starts a GCE Instance with configs specified by inst, // and which runs the startup script specified in inst. If image project // is not specified, it defaults to "debian-cloud". If image family is -// not specified, it defaults to "debian-9". +// not specified, it defaults to "debian-10". func (tr *GCETestRunner) StartInstance(ctx context.Context, inst *InstanceConfig) error { imageProject, imageFamily := inst.ImageProject, inst.ImageFamily if imageProject == "" { imageProject = "debian-cloud" } if imageFamily == "" { - imageFamily = "debian-9" + imageFamily = "debian-10" } img, err := tr.ComputeService.Images.GetFromFamily(imageProject, imageFamily).Context(ctx).Do() if err != nil {