2
0
mirror of https://github.com/openkmip/pykmip synced 2025-12-15 07:43:26 +00:00

Add REVOKE to list of supported server ops

As defined in _process_query, the list of supported server operations is missing REVOKE.
This commit is contained in:
alishamayor
2017-08-29 17:42:55 -07:00
committed by GitHub
parent f565fbf93a
commit fa548a7ebe

View File

@@ -1936,6 +1936,7 @@ class KmipEngine(object):
contents.Operation(enums.Operation.GET_ATTRIBUTES),
contents.Operation(enums.Operation.GET_ATTRIBUTE_LIST),
contents.Operation(enums.Operation.ACTIVATE),
contents.Operation(enums.Operation.REVOKE),
contents.Operation(enums.Operation.DESTROY),
contents.Operation(enums.Operation.QUERY)
])