summaryrefslogtreecommitdiff
path: root/changelogs
diff options
context:
space:
mode:
authorJordan Borean <jborean93@gmail.com>2023-04-15 06:07:45 +1000
committerGitHub <noreply@github.com>2023-04-14 13:07:45 -0700
commite267230a6b4abcab47920ea7780f343d0c674882 (patch)
treef9b3d9ddd8d4515eeeffac995e0e378815b7c490 /changelogs
parent25e77b7c98aebaacfd6ff97e2ff82c8271ca61b5 (diff)
downloadansible-e267230a6b4abcab47920ea7780f343d0c674882.tar.gz
Improve Ansible.Basic.cs tempdir uniqueness (#80328) (#80330)
* Improve Ansible.Basic.cs tempdir uniqueness The current tempdir naming scheme can result in the same name if the remote worker starts at the same time as another. By using the process id it should add enough uniqueness to avoid this situation. * Fix sanity issues * Fix up compile issue on older hosts (cherry picked from commit fb6b90fe4255e9995706905e2a9cde205648c0d2)
Diffstat (limited to 'changelogs')
-rw-r--r--changelogs/fragments/ansible-basic-tmpdir-uniqueness.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/changelogs/fragments/ansible-basic-tmpdir-uniqueness.yml b/changelogs/fragments/ansible-basic-tmpdir-uniqueness.yml
new file mode 100644
index 0000000000..0240949563
--- /dev/null
+++ b/changelogs/fragments/ansible-basic-tmpdir-uniqueness.yml
@@ -0,0 +1,2 @@
+bugfixes:
+- Windows - Ensure the module temp directory contains more unique values to avoid conflicts with concurrent runs - https://github.com/ansible/ansible/issues/80294