From 334ceda99bf087fadf07216844bd45704c4bcda2 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Tue, 28 Jan 2025 12:02:17 +0100 Subject: [PATCH] add comment --- cmd/root/bundle.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/root/bundle.go b/cmd/root/bundle.go index 6414fbe3f..5e20666f7 100644 --- a/cmd/root/bundle.go +++ b/cmd/root/bundle.go @@ -87,6 +87,9 @@ func configureBundle(cmd *cobra.Command, b *bundle.Bundle) (*bundle.Bundle, diag // Set the auth configuration in the command context. This can be used // downstream to initialize a API client. + // + // Note that just initializing a workspace client and loading auth configuration + // is a fast operation. No network i/o is perform just yet for auth types like OAuth. client, err := b.WorkspaceClientE() if err != nil { return b, diags.Extend(diag.FromErr(err))