Issue #6026 - Limiting scope of PR
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
parent
da83f05c40
commit
74ecf3675b
|
@ -716,8 +716,8 @@ public class ConstraintSecurityHandler extends SecurityHandler implements Constr
|
||||||
public void dump(Appendable out, String indent) throws IOException
|
public void dump(Appendable out, String indent) throws IOException
|
||||||
{
|
{
|
||||||
dumpObjects(out, indent,
|
dumpObjects(out, indent,
|
||||||
DumpableCollection.from("roles", _roles),
|
DumpableCollection.from("roles", _roles),
|
||||||
DumpableCollection.from("constraints", _constraintMappings));
|
DumpableCollection.from("constraints", _constraintMappings));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -741,7 +741,7 @@ public class ConstraintSecurityHandler extends SecurityHandler implements Constr
|
||||||
Set<String> paths = getPathsWithUncoveredHttpMethods();
|
Set<String> paths = getPathsWithUncoveredHttpMethods();
|
||||||
if (paths != null && !paths.isEmpty())
|
if (paths != null && !paths.isEmpty())
|
||||||
{
|
{
|
||||||
LOG.warn("{} has uncovered http methods for the following paths: {}",
|
LOG.warn("{} has uncovered HTTP methods for the following paths: {}",
|
||||||
ContextHandler.getCurrentContext(), paths);
|
ContextHandler.getCurrentContext(), paths);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue