Skip to content

Commit

Permalink
Avoiding issuing exit on any version until further notice (#2803)
Browse files Browse the repository at this point in the history
Avoiding issuing exit on any version until further notice.
  • Loading branch information
germa89 authored Feb 22, 2024
1 parent b298d60 commit 5e6607c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ansys/mapdl/core/mapdl_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,8 @@ def _kill_server(self):
if (
self._version >= 24.2
): # We can't use the non-cached version because of recursion error.
self.run("/EXIT,NOSAVE,,,,,SERVER")
# self.run("/EXIT,NOSAVE,,,,,SERVER")
self._ctrl("EXIT")
else:
self._ctrl("EXIT")

Expand Down

0 comments on commit 5e6607c

Please sign in to comment.