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 c9f6a48 commit 979a925Copy full SHA for 979a925
modules/liteserver.py
@@ -2,7 +2,6 @@
2
3
from modules.module import MtcModule
4
from mytoninstaller.mytoninstaller import set_node_argument
5
-from mytoninstaller.node_args import get_node_args
6
7
8
class LiteserverModule(MtcModule):
@@ -18,6 +17,7 @@ def enable(self):
18
17
set_node_argument(self.local, ["--celldb-cache-size", "1073741824"])
19
20
def disable(self):
+ from mytoninstaller.node_args import get_node_args
21
set_node_argument(self.local, ["--celldb-no-preload-all", "-d"])
22
if get_node_args()['--celldb-cache-size']:
23
set_node_argument(self.local, ["--celldb-cache-size", "-d"])
0 commit comments