From a1e10cdff9390cd59acac60bcafdc7f12cd8a85c Mon Sep 17 00:00:00 2001 From: Ioan Damian Date: Thu, 12 Sep 2024 08:47:47 +0200 Subject: [PATCH] Fix: errors reported by golangci-lint: skip check; printf: non-constant format string --- internal/awx/resource_job_template_launch.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/awx/resource_job_template_launch.go b/internal/awx/resource_job_template_launch.go index b0df6f6a..c4aa9710 100644 --- a/internal/awx/resource_job_template_launch.go +++ b/internal/awx/resource_job_template_launch.go @@ -129,6 +129,7 @@ func resourceJobTemplateLaunchCreate(ctx context.Context, d *schema.ResourceData if d.Get("wait_for_completion").(bool) { err = jobTemplateLaunchWait(ctx, client.JobService, res, d.Timeout(schema.TimeoutCreate)) if err != nil { + //nolint:govet return utils.Diagf( "JobTemplate execution failure", fmt.Sprintf("JobTemplateLaunch with ID %d and template ID %d, failed to complete %s", res.ID, d.Get("job_template_id").(int), err.Error()),