This is an automated email from the ASF dual-hosted git repository.
benjobs pushed a commit to branch dev-2.1.3
in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git
The following commit(s) were added to refs/heads/dev-2.1.3 by this push:
new 6e18ccdba [Improve] issus-3471 bug fixed (#3474)
6e18ccdba is described below
commit 6e18ccdba72710e33ccd85ecd5f239cc262bba01
Author: benjobs <[email protected]>
AuthorDate: Tue Jan 9 20:42:40 2024 +0800
[Improve] issus-3471 bug fixed (#3474)
Co-authored-by: benjobs <[email protected]>
---
.../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();