mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -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) {
|
} catch (Exception e) {
|
||||||
String flowdata = flow != null ? flow.toString() : "undefined";
|
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);
|
ResolvedFunction composedFunction = assembly.getResolvedFunction(isThreadSafe);
|
||||||
|
Loading…
Reference in New Issue
Block a user