Skip to content

Commit

Permalink
fix: allow grpcs and tls for client_certificate
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneutt authored and flrgh committed Oct 27, 2022
1 parent 1b60a92 commit e84ed94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kong/db/schema/entities/services.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ return {
then_field = "path",
then_match = { eq = null }}},
{ conditional = { if_field = "protocol",
if_match = { ne = "https" },
if_match = { not_one_of = { "https", "grpcs", "tls" }},
then_field = "client_certificate",
then_match = { eq = null }}},
{ conditional = { if_field = "protocol",
Expand Down

0 comments on commit e84ed94

Please sign in to comment.