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.
2 parents d44d952 + 7fa859a commit 09c453dCopy full SHA for 09c453d
nodescraper/pluginexecutor.py
@@ -194,8 +194,6 @@ def run_queue(self) -> list[PluginResult]:
194
self.logger.exception("Unexpected exception running plugin queue: %s", str(e))
195
finally:
196
self.logger.info("Closing connections")
197
- for connection_manager in self.connection_library.values():
198
- connection_manager.disconnect()
199
200
if self.plugin_config.result_collators:
201
self.logger.info("Running result collators")
@@ -217,6 +215,8 @@ def run_queue(self) -> list[PluginResult]:
217
215
],
218
216
**collator_args,
219
)
+ for connection_manager in self.connection_library.values():
+ connection_manager.disconnect()
220
221
return plugin_results
222
0 commit comments