Commit e3808b1
authored
hack-cleanup: AxonFlowException catch + Maven mirror composite action (#152)
Hack-audit pass on the QF-14 Java workstream. Two leftover shortcuts
flagged in the deep review:
1. examples/basic Basic.java caught `RuntimeException` for the
community-fail-open path. The SDK exception hierarchy is rooted at
`AxonFlowException extends RuntimeException`, so catching
`RuntimeException` was overly broad — would have swallowed any
non-SDK runtime error (NullPointerException from a SDK regression,
IllegalStateException from a misuse, etc.) and printed it as
"non-success". Tightened to `AxonFlowException`. The smoke now
propagates non-SDK runtime errors to the JVM default handler, which
exits non-zero and surfaces the stack trace.
2. The Maven mirror config block (~13 lines) was duplicated 5 times
across ci.yml + integration.yml. Extracted to a composite action
`.github/actions/setup-maven`. All 5 sites now reference
`uses: ./.github/actions/setup-maven`. ~65 lines of YAML
duplication removed; if the mirror URL ever rotates, one change
instead of five.
Verified: mvn install (parent + example) clean.1 parent fdb3729 commit e3808b1
4 files changed
Lines changed: 35 additions & 79 deletions
File tree
- .github
- actions/setup-maven
- workflows
- examples/basic/src/main/java/com/getaxonflow/examples
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
| 35 | + | |
50 | 36 | | |
51 | 37 | | |
52 | 38 | | |
| |||
113 | 99 | | |
114 | 100 | | |
115 | 101 | | |
116 | | - | |
117 | | - | |
118 | | - | |
119 | | - | |
120 | | - | |
121 | | - | |
122 | | - | |
123 | | - | |
124 | | - | |
125 | | - | |
126 | | - | |
127 | | - | |
128 | | - | |
129 | | - | |
130 | | - | |
| 102 | + | |
131 | 103 | | |
132 | 104 | | |
133 | 105 | | |
| |||
162 | 134 | | |
163 | 135 | | |
164 | 136 | | |
165 | | - | |
166 | | - | |
167 | | - | |
168 | | - | |
169 | | - | |
170 | | - | |
171 | | - | |
172 | | - | |
173 | | - | |
174 | | - | |
175 | | - | |
176 | | - | |
177 | | - | |
178 | | - | |
179 | | - | |
| 137 | + | |
180 | 138 | | |
181 | 139 | | |
182 | 140 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | | - | |
| 50 | + | |
65 | 51 | | |
66 | 52 | | |
67 | 53 | | |
| |||
103 | 89 | | |
104 | 90 | | |
105 | 91 | | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | | - | |
117 | | - | |
118 | | - | |
119 | | - | |
120 | | - | |
| 92 | + | |
121 | 93 | | |
122 | 94 | | |
123 | 95 | | |
| |||
Lines changed: 5 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| 23 | + | |
23 | 24 | | |
24 | 25 | | |
25 | 26 | | |
| |||
108 | 109 | | |
109 | 110 | | |
110 | 111 | | |
111 | | - | |
112 | | - | |
113 | | - | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
114 | 115 | | |
115 | 116 | | |
116 | 117 | | |
| |||
131 | 132 | | |
132 | 133 | | |
133 | 134 | | |
134 | | - | |
| 135 | + | |
135 | 136 | | |
136 | 137 | | |
137 | 138 | | |
| |||
0 commit comments