You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/bean-instantiations.yml
+13-3Lines changed: 13 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ jobs:
15
15
16
16
env:
17
17
MAX_STARTUP_DEPENDENCY_CHAIN_LENGTH: 9
18
-
MAX_DEFERRED_CHAIN_LENGTH: 10
18
+
MAX_DEFERRED_CHAIN_LENGTH: 16
19
19
MIN_INSTANTIATED_BEANS: 20
20
20
MAX_INSTANTIATED_BEANS: 96
21
21
MIN_DEFERRED_CHAIN_LENGTH: 1
@@ -219,7 +219,7 @@ jobs:
219
219
echo "Chains exceeding threshold:"
220
220
(grep -E "$STARTUP_DEEP_CHAIN_PATTERN" "$LOG_FILE" || echo " (No detailed chains found in log)")
221
221
echo "🔧 These chains violate the threshold MAX_STARTUP_DEPENDENCY_CHAIN_LENGTH. Please refactor them to break these chains."
222
-
echo "You can find a visualization of the bean instantiation graph in startupBeans.dot when starting the application locally."
222
+
echo "You can find a visualization of the bean instantiation graph in the artifacts of this job in startupBeans.dot"
223
223
echo "You can visualize the file on http://webgraphviz.com/"
224
224
else
225
225
echo "✅ No startup dependency chains exceed the threshold of $MAX_STARTUP_DEPENDENCY_CHAIN_LENGTH"
@@ -306,7 +306,7 @@ jobs:
306
306
echo "Chains exceeding threshold:"
307
307
(grep -E "$DEFERRED_LONG_CHAIN_PATTERN" "$LOG_FILE" || echo " (No detailed chains found in log)")
308
308
echo "🔧 These chains violate the threshold MAX_DEFERRED_CHAIN_LENGTH. Please refactor them to break these chains."
309
-
echo "You can find a visualization of the bean instantiation graph in deferredEagerBeanInstantiationViolations.dot when starting the application locally."
309
+
echo "You can find a visualization of the bean instantiation graph in in the artifacts of this job in deferredEagerBeanInstantiationViolations.dot."
310
310
echo "You can visualize the file on http://webgraphviz.com/"
311
311
else
312
312
echo "✅ No deferred dependency chains exceed the threshold of $MAX_DEFERRED_CHAIN_LENGTH"
0 commit comments