This is an automated email from the ASF dual-hosted git repository. benjobs pushed a commit to branch ck_sp in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git
commit ad0a203d6e5e39eeb6b0406103a7e896e3ed1ecb Author: benjobs <[email protected]> AuthorDate: Tue Jan 9 20:42:01 2024 +0800 [Improve] issus-3471 bug fixed --- .../streampark/console/core/service/impl/ApplicationServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/service/impl/ApplicationServiceImpl.java b/streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/service/impl/ApplicationServiceImpl.java index c58fcd5f2..605c7fe0e 100644 --- a/streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/service/impl/ApplicationServiceImpl.java +++ b/streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/service/impl/ApplicationServiceImpl.java @@ -1792,7 +1792,7 @@ public class ApplicationServiceImpl extends ServiceImpl<ApplicationMapper, Appli private String getSavePointed(Application appParam) { if (appParam.getSavePointed()) { - if (appParam.getSavePoint() == null) { + if (StringUtils.isBlank(appParam.getSavePoint())) { SavePoint savePoint = savePointService.getLatest(appParam.getId()); if (savePoint != null) { return savePoint.getPath();
