Skip to content

Commit b765766

Browse files
authored
Revert "feat: add incoming request logging filter"
This reverts commit 86361a9.
1 parent 86623f3 commit b765766

9 files changed

Lines changed: 12 additions & 516 deletions

File tree

mdx-gateway-generator/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ org.apache.bcel:bcel:6.6.1=spotbugs
6060
org.apache.commons:commons-lang3:3.13.0=spotbugs
6161
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6262
org.apache.commons:commons-text:1.10.0=spotbugs
63-
org.apache.commons:commons-text:1.13.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
63+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6464
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
6565
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
6666
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

mdx-gateways/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ org.apache.commons:commons-lang3:3.13.0=spotbugs
7575
org.apache.commons:commons-lang3:3.17.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7676
org.apache.commons:commons-lang3:3.8.1=pmd
7777
org.apache.commons:commons-text:1.10.0=spotbugs
78-
org.apache.commons:commons-text:1.13.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
78+
org.apache.commons:commons-text:1.13.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7979
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
8080
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
8181
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

mdx-models/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ org.apache.commons:commons-lang3:3.13.0=spotbugs
6969
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7070
org.apache.commons:commons-lang3:3.8.1=pmd
7171
org.apache.commons:commons-text:1.10.0=spotbugs
72-
org.apache.commons:commons-text:1.13.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
72+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7373
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
7474
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
7575
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

mdx-web/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ dependencies {
1414

1515
//testing dependencies
1616
testImplementation "com.mx.path-core:testing"
17+
testImplementation "org.slf4j:slf4j-simple:1.7.30"
1718
testImplementation "io.opentracing:opentracing-mock:0.33.0"
1819
testImplementation "org.springframework.boot:spring-boot-starter-test"
1920
testImplementation "org.mockito:mockito-inline:[4.0,5.0)"

mdx-web/gradle.lockfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ org.apache.commons:commons-lang3:3.13.0=spotbugs
7979
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8080
org.apache.commons:commons-lang3:3.8.1=pmd
8181
org.apache.commons:commons-text:1.10.0=spotbugs
82-
org.apache.commons:commons-text:1.13.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
82+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8383
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
8484
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
8585
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs
@@ -140,6 +140,7 @@ org.slf4j:jul-to-slf4j:1.7.36=compileClasspath,runtimeClasspath,testCompileClass
140140
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
141141
org.slf4j:slf4j-api:2.0.0=spotbugsSlf4j
142142
org.slf4j:slf4j-api:2.0.9=spotbugs
143+
org.slf4j:slf4j-simple:1.7.36=testCompileClasspath,testRuntimeClasspath
143144
org.slf4j:slf4j-simple:2.0.0=spotbugsSlf4j
144145
org.spockframework:spock-core:2.4-M1-groovy-4.0=testCompileClasspath,testRuntimeClasspath
145146
org.spockframework:spock-junit4:2.4-M1-groovy-4.0=testCompileClasspath,testRuntimeClasspath

mdx-web/src/main/java/com/mx/path/model/mdx/web/filter/FilterOrderSequence.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
public class FilterOrderSequence {
44
public static final int REQUEST_CONTEXT_FILTER = 1;
5-
public static final int REQUEST_LOGGING_FILTER = 2;
6-
public static final int ERROR_FILTER = 3;
7-
public static final int HMAC_FILTER = 4;
8-
public static final int SESSION_FILTER = 5;
9-
public static final int AUTH_FILTER = 6;
10-
public static final int REPO_FILTER = 7;
5+
public static final int ERROR_FILTER = 2;
6+
public static final int HMAC_FILTER = 3;
7+
public static final int SESSION_FILTER = 4;
8+
public static final int AUTH_FILTER = 5;
9+
public static final int REPO_FILTER = 6;
1110
}

mdx-web/src/main/java/com/mx/path/model/mdx/web/filter/PathRequestLoggingFilter.java

Lines changed: 0 additions & 298 deletions
This file was deleted.

0 commit comments

Comments
 (0)