Skip to content

Commit

Permalink
Increase ini_timeout from 20 sec to 60 seconds. (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
shrik6548 authored May 15, 2024
1 parent 964487c commit 6c9e16e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ansys/optislang/core/optislang.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def __init__(
auto_relocate: bool = False,
listener_id: Optional[str] = None,
multi_listener: Optional[Iterable[Tuple[str, int, Optional[str]]]] = None,
ini_timeout: Union[int, float] = 20,
ini_timeout: Union[int, float] = 60,
name: Optional[str] = None,
password: Optional[str] = None,
loglevel: Optional[str] = None,
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/optislang/core/tcp/osl_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ def __init__(
auto_relocate: bool = False,
listener_id: Optional[str] = None,
multi_listener: Optional[Iterable[Tuple[str, int, Optional[str]]]] = None,
ini_timeout: float = 20,
ini_timeout: float = 60,
password: Optional[str] = None,
logger: Optional[Any] = None,
shutdown_on_finished: bool = True,
Expand Down

0 comments on commit 6c9e16e

Please sign in to comment.