Show More
@@ -26,7 +26,8 b' from zmq.eventloop import ioloop' | |||
|
26 | 26 | |
|
27 | 27 | from IPython.external.argparse import ArgumentParser, SUPPRESS |
|
28 | 28 | from IPython.utils.importstring import import_item |
|
29 | from .clusterdir import ( | |
|
29 | ||
|
30 | from IPython.parallel.apps.clusterdir import ( | |
|
30 | 31 | ApplicationWithClusterDir, ClusterDirConfigLoader, |
|
31 | 32 | ClusterDirError, PIDFileError |
|
32 | 33 | ) |
@@ -260,9 +261,9 b' class IPClusterApp(ApplicationWithClusterDir):' | |||
|
260 | 261 | def create_default_config(self): |
|
261 | 262 | super(IPClusterApp, self).create_default_config() |
|
262 | 263 | self.default_config.Global.controller_launcher = \ |
|
263 | 'IPython.parallel.launcher.LocalControllerLauncher' | |
|
264 | 'IPython.parallel.apps.launcher.LocalControllerLauncher' | |
|
264 | 265 | self.default_config.Global.engine_launcher = \ |
|
265 | 'IPython.parallel.launcher.LocalEngineSetLauncher' | |
|
266 | 'IPython.parallel.apps.launcher.LocalEngineSetLauncher' | |
|
266 | 267 | self.default_config.Global.n = 2 |
|
267 | 268 | self.default_config.Global.delay = 2 |
|
268 | 269 | self.default_config.Global.reset_config = False |
@@ -32,7 +32,8 b' from zmq.utils import jsonapi as json' | |||
|
32 | 32 | from IPython.config.loader import Config |
|
33 | 33 | |
|
34 | 34 | from IPython.parallel import factory |
|
35 | from .clusterdir import ( | |
|
35 | ||
|
36 | from IPython.parallel.apps.clusterdir import ( | |
|
36 | 37 | ApplicationWithClusterDir, |
|
37 | 38 | ClusterDirConfigLoader |
|
38 | 39 | ) |
@@ -22,7 +22,7 b' import sys' | |||
|
22 | 22 | import zmq |
|
23 | 23 | from zmq.eventloop import ioloop |
|
24 | 24 | |
|
25 | from .clusterdir import ( | |
|
25 | from IPython.parallel.apps.clusterdir import ( | |
|
26 | 26 | ApplicationWithClusterDir, |
|
27 | 27 | ClusterDirConfigLoader |
|
28 | 28 | ) |
@@ -20,11 +20,11 b' import sys' | |||
|
20 | 20 | |
|
21 | 21 | import zmq |
|
22 | 22 | |
|
23 | from .clusterdir import ( | |
|
23 | from IPython.parallel.apps.clusterdir import ( | |
|
24 | 24 | ApplicationWithClusterDir, |
|
25 | 25 | ClusterDirConfigLoader |
|
26 | 26 | ) |
|
27 | from .logwatcher import LogWatcher | |
|
27 | from IPython.parallel.apps.logwatcher import LogWatcher | |
|
28 | 28 | |
|
29 | 29 | #----------------------------------------------------------------------------- |
|
30 | 30 | # Module level variables |
General Comments 0
You need to be logged in to leave comments.
Login now