Skip to content

Commit

Permalink
more fixups with xtest and ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dmihalcik-virtru committed Dec 16, 2024
1 parent c32fd0b commit cbc0ad9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions cli/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ async function parseCreateNanoTDFOptions(argv: Partial<mainArgs>): Promise<Creat
if (ecdsaBinding) {
c.bindingType = 'ecdsa';
}
// NOTE autoconfigure is not yet supported in nanotdf
delete c.autoconfigure;
return c;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/tdf3/src/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ export class Client {
}
}
if (
avs.length != scope.attributes?.length ||
avs.length != (scope.attributes?.length || 0) ||
!avs.map(({ fqn }) => fqn).every((a) => fqns.indexOf(a) >= 0)
) {
throw new ConfigurationError(
Expand Down

0 comments on commit cbc0ad9

Please sign in to comment.