Skip to content

Commit

Permalink
NPA-2806 Fix incorrect Content-Type Condition
Browse files Browse the repository at this point in the history
  • Loading branch information
JackPlowman committed Jul 1, 2024
1 parent 1eebc7b commit 029f2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxies/live/apiproxy/targets/target.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</Step>
<Step>
<Name>RaiseFault.415UnsupportedMediaType</Name>
<Condition>request.verb = "POST" and request.header.Content-Type != "application/fhir+json" and request.verb = "POST" and request.header.Content-Type != "application/fhir+json; charset=utf-8"</Condition>
<Condition>request.verb = "POST" and request.header.Content-Type != "application/fhir+json" and request.header.Content-Type != "application/fhir+json; charset=utf-8"</Condition>
</Step>
<Step>
<Name>SetRequestAWSMimeType</Name>
Expand Down

0 comments on commit 029f2fd

Please sign in to comment.