Skip to content

Commit

Permalink
release fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
eschultink committed Apr 3, 2023
1 parent 21865f0 commit 2821892
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,17 +250,14 @@ terraform apply

## Component Status

| Component | Status |
|--------------------------|-------------------------------------------------------------------------------------------------------------------------|
| Java | ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Worklytics/psoxy/ci-java.yaml) |
| Terraform Examples | ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Worklytics/psoxy/ci-terraform.yaml) |
| Terraform Examples - Dev | ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Worklytics/psoxy/ci-terraform-dev.yaml) |
| Tools | ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Worklytics/psoxy/ci-tools.yaml) |
| Component | Status |
|--------------------------|------------------------------------------------------------------------------------------------------------------------------|
| Java | ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Worklytics/psoxy/ci-java.yaml) |
| Terraform Examples | ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Worklytics/psoxy/ci-terraform.yaml) |
| Tools | ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Worklytics/psoxy/ci-tools.yaml) |


### Current: [v0.4.15](https://github.com/Worklytics/psoxy/releases/tag/v0.4.15)

Review [earlier release notes in GitHub](https://github.com/Worklytics/psoxy/releases).
Review [release notes in GitHub](https://github.com/Worklytics/psoxy/releases).

## Support

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public HttpEventResponse handle(HttpEventRequest request) {

this.sanitizer = loadSanitizerRules();

String callLog = String.format("%s %s %s TokensReversed=%b", request.getHttpMethod(), URLUtils.relativeURL(toLog), tokenizedURLReversed);
String callLog = String.format("%s %s TokensReversed=%b", request.getHttpMethod(), URLUtils.relativeURL(toLog), tokenizedURLReversed);
if (skipSanitization) {
log.info(String.format("%s. Skipping sanitization.", callLog));
} else if (sanitizer.isAllowed(request.getHttpMethod(), targetUrl)) {
Expand Down

0 comments on commit 2821892

Please sign in to comment.