From ab796c80effac83ce83148b59dd3f10df6c2fa09 Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Mon, 15 Sep 2025 13:07:00 -0600 Subject: [PATCH] Fix comment for GetSessionLogs method --- pkg/cmd/agent-task/capi/sessions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/agent-task/capi/sessions.go b/pkg/cmd/agent-task/capi/sessions.go index 0c9de2722..7f16b4ae5 100644 --- a/pkg/cmd/agent-task/capi/sessions.go +++ b/pkg/cmd/agent-task/capi/sessions.go @@ -241,7 +241,7 @@ func (c *CAPIClient) GetSession(ctx context.Context, id string) (*Session, error return sessions[0], nil } -// GetSession retrieves logs of an agent session identified by ID. +// GetSessionLogs retrieves logs of an agent session identified by ID. func (c *CAPIClient) GetSessionLogs(ctx context.Context, id string) ([]byte, error) { if id == "" { return nil, fmt.Errorf("missing session ID")