You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/units/plugins/lookup
Zhikang Zhang 0971a342d8
Solve race condition in password lookup (#42529)
NOTE:
1. use os.open() with os.O_CREAT|os.O_EXCL to check existence
and create a lock file if not exists, it's an atomic operation
2. the fastest process will create the lock file and others will
wait until the lock file is removed
3. after the writer finished writing to the password file, all the reading
operations use built-in open so processes can read the file parallel
6 years ago
..
__init__.py Add empty-init code-smell script. (#18406) 8 years ago
test_aws_ssm.py aws ssm parameter lookup - change to return Nones for missing variables (#36456) 7 years ago
test_conjur_variable.py Conjur Lookup Plugin (#34280) 7 years ago
test_ini.py test/: PEP8 compliancy (#24803) 7 years ago
test_lastpass.py Update module_utils.six to latest (#22855) 8 years ago
test_onepassword.py 1Password lookup plugin (#37207) 6 years ago
test_password.py Solve race condition in password lookup (#42529) 6 years ago