Skip to content

Commit 5f5491f

Browse files
committed
Update error message for incomplete http client configuration
1 parent 2c4988f commit 5f5491f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

httpclient/httpclient_client_configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func SetClientConfiguration(configFilePath string) (*ClientConfig, error) {
4141
return nil, err
4242
}
4343
} else {
44-
return nil, fmt.Errorf("configuration incomplete and no config file path provided")
44+
return nil, fmt.Errorf("http client configuration is incomplete. Required environment variables are missing, and no configuration file path is provided. Please set the necessary environment variables or provide a valid configuration file path")
4545
}
4646
}
4747

0 commit comments

Comments
 (0)