|
@@ -451,7 +451,7 @@ public class RyTask
|
|
|
Iterator<PredictionResponse> predictions = stub.streamPredictions(request);
|
|
|
while (predictions.hasNext()) {
|
|
|
String responseStr = predictions.next().getPrediction().toStringUtf8();
|
|
|
- System.out.println(responseStr);
|
|
|
+ log.info("决策流式返回的结果是{}", responseStr);
|
|
|
responseStr = JSON.parseObject(responseStr).getString("message");
|
|
|
if("complete".equals(responseStr)){
|
|
|
System.out.println("结尾语句并且是非JSON,无需处理");
|
|
@@ -459,7 +459,7 @@ public class RyTask
|
|
|
sb.append(responseStr);
|
|
|
}
|
|
|
}
|
|
|
- } catch (IOException e) {
|
|
|
+ } catch (Exception e) {
|
|
|
throw new RuntimeException(e);
|
|
|
} finally {
|
|
|
System.out.println(sb.toString());
|