Remove deprecated heartbeat policy check

IPA does not use vendor passthru entry point, remove corresponding
policy check.

Change-Id: Ia2f981c9fe6cbb848f248b0c4c2f3339efcabec0
This commit is contained in:
Yuriy Zveryanskyy 2017-02-01 13:46:41 +02:00
parent 7194d0d135
commit 9efaed6f44

View File

@ -1080,10 +1080,7 @@ class NodeVendorPassthruController(rest.RestController):
:param data: body of data to supply to the specified method.
"""
cdict = pecan.request.context.to_policy_values()
if method == 'heartbeat':
policy.authorize('baremetal:node:ipa_heartbeat', cdict, cdict)
else:
policy.authorize('baremetal:node:vendor_passthru', cdict, cdict)
policy.authorize('baremetal:node:vendor_passthru', cdict, cdict)
# Raise an exception if node is not found
rpc_node = api_utils.get_rpc_node(node_ident)