This is an automated email from the ASF dual-hosted git repository.
benjobs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git
The following commit(s) were added to refs/heads/dev by this push:
new 8784d9857 [Bug] Fix the bug about the owner is missed when application
is running (#1572)
8784d9857 is described below
commit 8784d985714e97937a6e334d9c5f3bd5f77bdb5f
Author: 1996fanrui <[email protected]>
AuthorDate: Sun Sep 11 20:09:45 2022 +0800
[Bug] Fix the bug about the owner is missed when application is running
(#1572)
---
.../streampark/console/core/service/impl/ApplicationServiceImpl.java | 2 ++
1 file changed, 2 insertions(+)
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 2fcf409f1..4c8c10693 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
@@ -485,6 +485,8 @@ public class ApplicationServiceImpl extends
ServiceImpl<ApplicationMapper, Appli
if (app == null) {
return record;
}
+ app.setNickName(record.getNickName());
+ app.setUserName(record.getUserName());
app.setFlinkVersion(record.getFlinkVersion());
app.setProjectName(record.getProjectName());
return app;