We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e24294e commit d5d10feCopy full SHA for d5d10fe
core/testing_recorder.go
@@ -21,7 +21,9 @@ func cassetteRequestFilter(i *cassette.Interaction) error {
21
22
orgIDRegex := regexp.MustCompile(`^organization_id=[0-9a-f-]{36}$`)
23
tokenRegex := regexp.MustCompile(`^https://api\.scaleway\.com/account/v1/tokens/[0-9a-f-]{36}$`)
24
- apiKeyRegex := regexp.MustCompile(`^https://api\.scaleway\.com/iam/v1alpha1/api-keys/SCW[0-9A-Z]{17}$`)
+ apiKeyRegex := regexp.MustCompile(
25
+ `^https://api\.scaleway\.com/iam/v1alpha1/api-keys/SCW[0-9A-Z]{17}$`,
26
+ )
27
28
i.URL = orgIDRegex.ReplaceAllString(
29
i.URL,
0 commit comments