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
1 changed files with 1 additions and 0 deletions

View File

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