Skip to content

Commit

Permalink
Fix bad kwarg when launching server via UDS (#378)
Browse files Browse the repository at this point in the history
Fixes keyword argument typo when launching server via UDS for tests

[ committed by @ankona  ]
[ reviewed by @billschereriii ]
  • Loading branch information
ankona authored Jul 14, 2023
1 parent 7d58b13 commit de066d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ Description
Detailed Notes

- Update language support matrix in documentation to reflect updates from the last release (PR379_)
- Fix typo causing startup failure in utility script for unit tests (PR378_)
- Deleted obsolete build and testing files that are no longer needed with the new build and test system (PR366_)
- Reuse existing redis connection when mapping the Redis cluster (PR364_)

.. _PR379: https://github.com/CrayLabs/SmartRedis/pull/379
.. _PR378: https://github.com/CrayLabs/SmartRedis/pull/378
.. _PR366: https://github.com/CrayLabs/SmartRedis/pull/366
.. _PR364: https://github.com/CrayLabs/SmartRedis/pull/364

Expand Down
2 changes: 1 addition & 1 deletion utils/launch_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def prepare_uds_socket(udsport):
return # Silently bail
uds_abs = pathlib.Path(udsport).resolve()
basedir = uds_abs.parent
basedir.mkdir(exists_okay=True)
basedir.mkdir(exist_ok=True)
uds_abs.touch()
uds_abs.chmod(0o777)

Expand Down

0 comments on commit de066d0

Please sign in to comment.