-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable full denylist blocking for ruby < 2.11.0-dev
- Loading branch information
Showing
2 changed files
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,8 @@ def setup_blocked_ips(self): | |
|
||
@missing_feature(weblog_variant="spring-boot" and context.library < "[email protected]") | ||
@bug(context.library >= "[email protected]" and context.library < "[email protected]", reason="APMRP-360") | ||
@bug(context.library >= "[email protected]" and context.library < "[email protected]", reason="APMRP-360") | ||
@bug(context.library < "[email protected]", reason="APMRP-56691") | ||
def test_blocked_ips(self): | ||
"""test blocked ips are enforced""" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ def setup_blocking_test(self): | |
@bug(context.library < "[email protected]", reason="APMRP-360") | ||
@bug(context.library >= "[email protected]" and context.library < "[email protected]", reason="APMRP-360") | ||
@bug(library="java", reason="APPSEC-56006") | ||
@bug(context.library < "[email protected]", reason="APMRP-56691") | ||
def test_blocking_test(self): | ||
"""Test with a denylisted user""" | ||
|
||
|