From 61ddf5cc717a9705893274d7907f338e2a8417b4 Mon Sep 17 00:00:00 2001 From: codebien <2103732+codebien@users.noreply.github.com> Date: Fri, 22 Aug 2025 12:10:17 +0200 Subject: [PATCH] Clarify the message for automatic resolution --- internal/cmd/launcher.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/cmd/launcher.go b/internal/cmd/launcher.go index 74da02d4b76..575cf9c9e9f 100644 --- a/internal/cmd/launcher.go +++ b/internal/cmd/launcher.go @@ -89,7 +89,7 @@ func (l *launcher) launch(cmd *cobra.Command, args []string) error { if err != nil { l.gs.Logger. WithError(err). - Error("Automatic extension resolution is enabled but it failed to analyze the dependencies." + + Error("Failed to analyze the extensions required." + " Please, make sure to report this issue by opening a bug report.") return err } @@ -103,8 +103,8 @@ func (l *launcher) launch(cmd *cobra.Command, args []string) error { l.gs.Logger. WithField("deps", deps). - Info("Automatic extension resolution is enabled. The current k6 binary doesn't satisfy all dependencies," + - " it's required to provision a custom binary.") + Info("Provisioning a custom binary as the current doesn't satisfy all dependencies," + + " may take a few seconds as it needs to download the new one.") customBinary, err := l.provisioner.provision(deps) if err != nil {