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 f995713 commit 016d049Copy full SHA for 016d049
src/aiida/manage/configuration/config.py
@@ -16,8 +16,6 @@
16
from __future__ import annotations
17
18
import codecs
19
-import contextlib
20
-import io
21
import json
22
import os
23
import shutil
@@ -528,8 +526,7 @@ def create_profile(
528
526
529
527
LOGGER.report('Initialising the storage backend.')
530
try:
531
- with contextlib.redirect_stdout(io.StringIO()):
532
- profile.storage_cls.initialise(profile)
+ profile.storage_cls.initialise(profile)
533
except Exception as exception:
534
raise StorageMigrationError(
535
f'Storage backend initialisation failed, probably because the configuration is incorrect:\n{exception}'
0 commit comments