Skip to content

Commit 4148881

Browse files
committed
add longer description to warning
1 parent 8579a3c commit 4148881

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

nipype/pipeline/plugins/base.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,11 @@ def _local_hash_check(self, jobid, graph):
340340
try:
341341
cached, updated = self.procs[jobid].is_cached()
342342
except Exception:
343-
logger.warning('Error while checking node hash, forcing re-run\n\n%s',
343+
logger.warning('Error while checking node hash, forcing re-run. '
344+
'Although this error may not prevent the workflow from running, '
345+
'it could indicate a major problem. Please report a new issue'
346+
'at https://github.com/nipy/nipype/issues adding the following'
347+
'information:\n\n%s',
344348
'\n'.join(format_exception(*sys.exc_info())))
345349
return False
346350

0 commit comments

Comments
 (0)