Skip to content
Draft
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/4656.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Arguments in standalone launcher.
10 changes: 10 additions & 0 deletions src/ansys/fluent/core/launcher/standalone_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,11 @@ def __init__(
topy: str | list | None = None,
start_watchdog: bool | None = None,
file_transfer_service: Any | None = None,
certificates_folder: str | None = None,
insecure_mode: bool = False,
):
self.certificates_folder = certificates_folder
self.insecure_mode = insecure_mode
"""
Launch a Fluent session in standalone mode.

Expand Down Expand Up @@ -174,6 +178,12 @@ def __init__(
GUI-less Fluent sessions started by PyFluent are properly closed when the current Python process ends.
file_transfer_service : Any
Service for uploading/downloading files to/from the server.
certificates_folder : str, optional
Path to the folder containing TLS certificates for Fluent's gRPC server.
insecure_mode : bool, optional
If True, Fluent's gRPC server will be started in insecure mode without TLS.
This mode is not recommended. For more details on the implications
and usage of insecure mode, refer to the Fluent documentation.

Raises
------
Expand Down
Loading