Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/pom.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -16,7 +16,7 @@
<kotlin.version>2.1.0</kotlin.version>
<connect.version>0.7.2</connect.version>
<okhttp.version>4.12.0</okhttp.version>
<platform.branch>protocol/go/v0.5.0</platform.branch>
<platform.branch>protocol/go/v0.11.0</platform.branch>
</properties>
<dependencies>
<!-- Logging Dependencies -->
Expand Down
2 changes: 0 additions & 2 deletions sdk/src/main/java/io/opentdf/platform/sdk/Autoconfigure.java
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,7 +4,6 @@
import io.opentdf.platform.policy.Algorithm;
import io.opentdf.platform.policy.Attribute;
import io.opentdf.platform.policy.AttributeRuleTypeEnum;
import io.opentdf.platform.policy.AttributeValueSelector;
import io.opentdf.platform.policy.KeyAccessServer;
import io.opentdf.platform.policy.SimpleKasKey;
import io.opentdf.platform.policy.Value;
Expand DownExpand Up@@ -873,7 +872,6 @@ static Granter newGranterFromAttributes(KASKeyCache keyCache, Value... attrValue
static Granter newGranterFromService(AttributesServiceClientInterface as, KASKeyCache keyCache, AttributeValueFQN... fqns) throws AutoConfigureException {
GetAttributeValuesByFqnsRequest request = GetAttributeValuesByFqnsRequest.newBuilder()
.addAllFqns(Arrays.stream(fqns).map(AttributeValueFQN::toString).collect(Collectors.toList()))
.setWithValue(AttributeValueSelector.newBuilder().setWithKeyAccessGrants(true).build())
Comment thread
jakedoublev marked this conversation as resolved.
.build();

GetAttributeValuesByFqnsResponse av = ResponseMessageKt.getOrThrow(
Expand Down
Loading