1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix typo in aerospike_migration module. (#1740)

This commit is contained in:
Felix Fontein 2021-02-11 07:04:45 +01:00 committed by GitHub
parent 562ff7efb7
commit 9a6031ab4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -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)."

View file

@ -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:" +