Skip to content

Commit 2c30d2c

Browse files
committed
fix lint error: lll
1 parent 6872207 commit 2c30d2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/grpc/grpc.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,8 @@ func GetDialOptions(agentConfig *config.Config, resourceID string) []grpc.DialOp
221221
func addTransportCredentials(agentConfig *config.Config, opts []grpc.DialOption) ([]grpc.DialOption, bool) {
222222
transportCredentials, err := getTransportCredentials(agentConfig)
223223
if err != nil {
224-
slog.Error("Unable to get transport credentials from agent configuration, adding default transport credentials to gRPC dial options", "error", err)
224+
slog.Error("Unable to get transport credentials from agent configuration, "+
225+
"adding default transport credentials to gRPC dial options", "error", err)
225226
opts = append(opts,
226227
grpc.WithTransportCredentials(defaultCredentials),
227228
)

0 commit comments

Comments
 (0)