master
Lucio Lelii 2 years ago
parent 4b1b6471ca
commit 0fe819c2ee

@ -2,7 +2,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for Common Smartgears
## [v3.3.0-SNAPSHOT] - 2022-01-19
## [v3.1.2-SNAPSHOT] - 2022-01-19
- enabled policy check on smartgears
- container configuration for test added

@ -11,7 +11,7 @@
<groupId>org.gcube.core</groupId>
<artifactId>common-smartgears</artifactId>
<version>3.3.0-SNAPSHOT</version>
<version>3.1.2-SNAPSHOT</version>
<name>SmartGears</name>
<dependencyManagement>

@ -126,8 +126,8 @@ public class RequestValidator extends RequestHandler {
for (Policy policy: policies) {
log.debug("policy: {}", policy.getPolicyAsString() );
if (PolicyUtils.isPolicyValidForClient(policy.getServiceAccess(), serviceIdentifier)){
log.error("rejecting call to {} : {} is not allowed to contact the service ",context.name(), caller.getClient().getId());
invalid_request_error.fire("rejecting call to "+context.name()+": "+caller.getClient().getId()+" is not allowed to contact the service");
log.error("rejecting call to {} : {} is not allowed to contact the service ",context.name(), caller.getClient().getId());
invalid_request_error.fire("rejecting call to "+context.name()+": "+caller.getClient().getId()+" is not allowed to contact the service: "+serviceIdentifier.getServiceName() );
}
}
}catch (Exception e) {

Loading…
Cancel
Save