Skip to content

Commit 8a75965

Browse files
authored
[hotfix] Fix code style and enable maven ci on dev-* branch (#3631)
1 parent 3b88e60 commit 8a75965

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: .github/workflows/maven.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ on:
2222
branches:
2323
- dev
2424
- release-*
25+
- dev-*
2526
paths-ignore:
2627
- '**.md'
2728
- 'deploy/**'

Diff for: streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/service/impl/ApplicationServiceImpl.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1949,7 +1949,8 @@ public List<ApplicationReport> getYARNApplication(String appName) {
19491949
.collect(Collectors.toList());
19501950
} catch (Exception e) {
19511951
log.error("Failed to connect hadoop YARN, detail: {}", Utils.stringifyException(e));
1952-
throw new RuntimeException("Failed to connect hadoop YARN. Ensure that hadoop yarn is running.");
1952+
throw new RuntimeException(
1953+
"Failed to connect hadoop YARN. Ensure that hadoop yarn is running.");
19531954
}
19541955
}
19551956

0 commit comments

Comments
 (0)