Skip to content

Commit

Permalink
fixes #1089 update audit status key from Status to status (#1090)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehu authored Jan 24, 2022
1 parent 72316eb commit 6a0da4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion audit/src/main/java/com/networknt/audit/AuditHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public class AuditHandler implements MiddlewareHandler {
static final String QUERY_PARAMETERS_KEY = "queryParameters";
static final String PATH_PARAMETERS_KEY = "pathParameters";
static final String REQUEST_COOKIES_KEY = "requestCookies";
static final String STATUS_KEY = "Status";
static final String STATUS_KEY = "status";
static final String SERVER_CONFIG = "server";
static final String SERVICEID_KEY = "serviceId";
static final String INVALID_CONFIG_VALUE_CODE = "ERR10060";
Expand Down
2 changes: 1 addition & 1 deletion audit/src/main/resources/config/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ audit:
# - responseBody

# Response error status payload
- Status
- status
2 changes: 1 addition & 1 deletion audit/src/test/resources/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ audit:
- requestCookies

# Response error status payload
- Status
- status

0 comments on commit 6a0da4f

Please sign in to comment.