Fix wildcard flag value

Signed-off-by: Andrey Berezin <a.berezin@yadro.com>
pull/1/head
Andrey Berezin 2022-12-16 14:20:43 +03:00 committed by abereziny
parent c7f832e77a
commit 4f5aedebfe
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ def generate_container_session_token(
session = {
"container": {
"verb": verb.value,
"wildcard": cid is not None,
"wildcard": cid is None,
**({"containerID": {"value": f"{encode_for_json(cid)}"}} if cid is not None else {}),
},
}