(cherry picked from commit 9a6031ab4e
)
Co-authored-by: Felix Fontein <felix@fontein.de>
pull/1797/head
parent
42c7d763d8
commit
2a8f04347d
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- "aerospike_migration - fix typo that caused ``migrate_tx_key`` instead of ``migrate_rx_key`` being used (https://github.com/ansible-collections/community.general/pull/1739)."
|
|
@ -338,7 +338,7 @@ class Migrations:
|
||||||
namespace_tx = \
|
namespace_tx = \
|
||||||
int(namespace_stats[self.module.params['migrate_tx_key']])
|
int(namespace_stats[self.module.params['migrate_tx_key']])
|
||||||
namespace_rx = \
|
namespace_rx = \
|
||||||
int(namespace_stats[self.module.params['migrate_tx_key']])
|
int(namespace_stats[self.module.params['migrate_rx_key']])
|
||||||
except KeyError:
|
except KeyError:
|
||||||
self.module.fail_json(
|
self.module.fail_json(
|
||||||
msg="Did not find partition remaining key:" +
|
msg="Did not find partition remaining key:" +
|
||||||
|
|
Loading…
Reference in New Issue