Skip to content

Commit 43dae42

Browse files
authored
disable default license checkout on LicenseChecker (#636)
1 parent 15272b4 commit 43dae42

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ansys/mapdl/core/licensing.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,15 +391,16 @@ def checkout_license(self, host=None):
391391
else:
392392
self._license_checkout_success = True
393393

394-
def start(self, license_file=True, checkout_license=True):
394+
def start(self, license_file=True, checkout_license=False):
395395
"""Start monitoring the license file and attempt a license checkout.
396396
397397
Parameters
398398
----------
399399
license_file : bool, optional
400400
Start the license file thread.
401401
checkout_license : bool, optional
402-
Start the checkout license thread.
402+
Start the checkout license thread. By default this is
403+
disabled.
403404
404405
"""
405406
if license_file:

0 commit comments

Comments
 (0)