We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cc65fa commit e5b8f4eCopy full SHA for e5b8f4e
src/ansys/tools/common/cyberchannel.py
@@ -227,6 +227,8 @@ def create_uds_channel(
227
raise RuntimeError("Unix Domain Sockets are not supported on this platform or gRPC version.")
228
229
if uds_fullpath:
230
+ # Ensure the parent directory exists
231
+ Path(uds_fullpath).parent.mkdir(parents=True, exist_ok=True)
232
target = f"unix:{uds_fullpath}"
233
else:
234
if not uds_service:
0 commit comments