-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Current:
if(result.isFailure(){
AlgorithmException e = ((AlgoFailure)result).error
e.getMessage();
e.printStackTrace();
}
This isn't a good experience and does not surface all of the available data in the response
Needed:
if(result.isFailure(){
AlgoFailure fail = (AlgoFailure)result;
fail.getMessage();
fail.getStacktrace();
fail.getMetadata().getDuration();
fail.getMetadata().getStdout();
}
Metadata
Metadata
Assignees
Labels
No labels