mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-25 18:20:33 -06:00
Don't swallow exception in VirtdataComposer
This commit is contained in:
parent
2e3fc5a044
commit
7b61ee3a98
@ -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