Updates mimimum version of sushy in requirements

Minimum version of sushy should be 3.1.0

Change-Id: I905b43bc42ad75329938b15f4b5b7873f59e63ee
Closes-bug: #1864187
This commit is contained in:
Shivanand Tendulker 2020-02-21 07:32:51 -05:00
parent c0c0614661
commit 5bc756917d
2 changed files with 5 additions and 3 deletions

View File

@ -48,8 +48,10 @@ class HPEConnector(connector.Connector):
:param timeout: Max time in seconds to wait for blocking async call.
:returns: The response from the connector.Connector's _op method.
"""
resp = super(HPEConnector, self)._op(method, path, data, headers,
blocking, timeout,
resp = super(HPEConnector, self)._op(method, path, data=data,
headers=headers,
blocking=blocking,
timeout=timeout,
allow_redirects=False)
# With IPv6, Gen10 server gives redirection response with new path with
# a prefix of '/' so this check is required

View File

@ -9,4 +9,4 @@ retrying!=1.3.0,>=1.2.3 # Apache-2.0
pysnmp>=4.2.3,<5.0.0 # BSD
# Redfish communication uses the Sushy library
sushy>=1.8.0
sushy>=3.1.0