Skip to content

Commit 02b370b

Browse files
committed
Fix batching error due to outdated etcd3gw
Testing the new batching feature ended up crashing Neutron: File "/usr/local/lib/python3.9/dist-packages/networking_generic_switch/batching.py", line 325, in __init__ etcd_client = etcd3gw.client( TypeError: client() got an unexpected keyword argument 'api_path' This new feature needs etcd3gw 2.1.0, update minimum version of dependency accordingly. Note that this is only an issue when reusing an existing environment or having to compose with other dependency constraints. Simply installing the most recent version of etcd3gw works as expected. Change-Id: Ie6ecf781fde990ffbce420904978fe5a9fb1e400
1 parent 40399f2 commit 02b370b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# The order of packages is significant, because pip processes them in the order
22
# of appearance. Changing the order has an impact on the overall integration
33
# process, which may cause wedges in the gate later.
4-
etcd3gw>=0.2.4 # Apache-2.0
4+
etcd3gw>=2.1.0 # Apache-2.0
55
eventlet>=0.18.2 # Apache-2.0
66
stevedore>=1.20.0 # Apache-2.0
77
netmiko>=4.1.1 # MIT

0 commit comments

Comments
 (0)