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 1417b48f6 [ISSUES-3983] Job dependencies limit the default number of 
uploaded jars (#3990)
1417b48f6 is described below

commit 1417b48f611d1d9fd81ec7f73f6c1cfe03396904
Author: jianjun.xu <[email protected]>
AuthorDate: Fri Aug 23 11:40:27 2024 +0800

    [ISSUES-3983] Job dependencies limit the default number of uploaded jars 
(#3990)
    
    Co-authored-by: jianjun.xu <[email protected]>
---
 .../core/service/application/impl/ApplicationInfoServiceImpl.java        | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/service/application/impl/ApplicationInfoServiceImpl.java
 
b/streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/service/application/impl/ApplicationInfoServiceImpl.java
index 4b87659f5..a007fb364 100644
--- 
a/streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/service/application/impl/ApplicationInfoServiceImpl.java
+++ 
b/streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/service/application/impl/ApplicationInfoServiceImpl.java
@@ -341,7 +341,6 @@ public class ApplicationInfoServiceImpl extends 
ServiceImpl<ApplicationMapper, A
             .sorted(Comparator.comparingLong(File::lastModified).reversed())
             .map(File::getName)
             .filter(fn -> fn.endsWith(Constant.JAR_SUFFIX))
-            .limit(DEFAULT_HISTORY_RECORD_LIMIT)
             .collect(Collectors.toList());
     }
 

Reply via email to