@@ -129,7 +129,6 @@ public class AppSecRequestContext implements DataBundle, Closeable {
129
129
private volatile int raspInternalErrors ;
130
130
private volatile int raspInvalidObjectErrors ;
131
131
private volatile int raspInvalidArgumentErrors ;
132
- private volatile int raspRuleSkipped ;
133
132
private volatile int wafInternalErrors ;
134
133
private volatile int wafInvalidObjectErrors ;
135
134
private volatile int wafInvalidArgumentErrors ;
@@ -160,8 +159,6 @@ public class AppSecRequestContext implements DataBundle, Closeable {
160
159
RASP_INVALID_ARGUMENT_ERRORS_UPDATER =
161
160
AtomicIntegerFieldUpdater .newUpdater (
162
161
AppSecRequestContext .class , "raspInvalidArgumentErrors" );
163
- private static final AtomicIntegerFieldUpdater <AppSecRequestContext > RASP_RULE_SKIPPED_UPDATER =
164
- AtomicIntegerFieldUpdater .newUpdater (AppSecRequestContext .class , "raspRuleSkipped" );
165
162
166
163
private static final AtomicIntegerFieldUpdater <AppSecRequestContext > WAF_INTERNAL_ERRORS_UPDATER =
167
164
AtomicIntegerFieldUpdater .newUpdater (AppSecRequestContext .class , "wafInternalErrors" );
@@ -223,10 +220,6 @@ public void increaseRaspTimeouts() {
223
220
RASP_TIMEOUTS_UPDATER .incrementAndGet (this );
224
221
}
225
222
226
- public void increaseRuleSkipped () {
227
- RASP_RULE_SKIPPED_UPDATER .incrementAndGet (this );
228
- }
229
-
230
223
public void increaseRaspErrorCode (int code ) {
231
224
switch (code ) {
232
225
case DD_WAF_RUN_INTERNAL_ERROR :
@@ -267,10 +260,6 @@ public int getRaspTimeouts() {
267
260
return raspTimeouts ;
268
261
}
269
262
270
- public int getRaspRuleSkipped () {
271
- return raspRuleSkipped ;
272
- }
273
-
274
263
public int getRaspError (int code ) {
275
264
switch (code ) {
276
265
case DD_WAF_RUN_INTERNAL_ERROR :
0 commit comments