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 b19baa0 commit 7e93d05Copy full SHA for 7e93d05
ipyparallel/cluster/cluster.py
@@ -304,10 +304,11 @@ def _profile_config_default(self):
304
305
self.log.debug(f"Loading profile {self.profile_dir}")
306
# set profile dir via config
307
- self.config.ProfileDir.location = self.profile_dir
+ config = Config()
308
+ config.ProfileDir.location = self.profile_dir
309
310
# load profile config via IPCluster
- app = IPClusterStart(parent=self, log_level=10)
311
+ app = IPClusterStart(config=config, log=self.log, log_level=10)
312
# adds profile dir to config_files_path
313
app.init_profile_dir()
314
# adds system to config_files_path
0 commit comments