Skip to content

Commit ee7186b

Browse files
authored
Merge pull request #1549 from tkan145/THREESCALE-11796-2.16
THREESCALE-11796 - Correct boolean value in the schema
2 parents 2f6e61d + 3354796 commit ee7186b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/link_check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
statuses: write
88
jobs:
99
build:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
permissions:
1212
contents: read
1313
pull-requests: read

gateway/src/apicast/policy/fapi/apicast-policy.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
"description": "Validate x-fapi-customer-ip-address header. If the verification fails, the request will be rejected with 403",
1313
"title": "Validate x-fapi-customer-ip-address header",
1414
"type": "boolean",
15-
"default": "false"
15+
"default": false
1616
},
1717
"validate_oauth2_certificate_bound_access_token ": {
1818
"description": "Validate OAuth 2.0 Mutual TLS Certificate Bound access token. If enable, all tokens are verified and must contain the certificate hash claim (cnf). If the verification fails, the request will be rejected with 401.",
1919
"title": "Validate OAuth 2.0 Mutual TLS Certificate Bound access token",
2020
"type": "boolean",
21-
"default": "false"
21+
"default": false
2222
}
2323
}
2424
}

0 commit comments

Comments
 (0)