mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-12-28 17:51:06 -06:00
Don't swallow exception in VirtdataComposer
This commit is contained in:
parent
de9075df93
commit
918d0c7939
@ -166,7 +166,7 @@ public class VirtDataComposer {
|
||||
}
|
||||
} catch (Exception e) {
|
||||
String flowdata = flow != null ? flow.toString() : "undefined";
|
||||
return diagnostics.error(new RuntimeException("FUNCTION resolution failed: '" + flowdata + "': " + e.toString()));
|
||||
return diagnostics.error(new RuntimeException("FUNCTION resolution failed: '" + flowdata + "': " + e.toString(),e));
|
||||
}
|
||||
}
|
||||
ResolvedFunction composedFunction = assembly.getResolvedFunction(isThreadSafe);
|
||||
|
Loading…
Reference in New Issue
Block a user