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
# below. They are part of the documented behaviour and must not
182
+
# turn the smoke-test job red. All other ERROR / SEVERE /
183
+
# Exception / Throwable lines remain failing.
184
+
ALLOW=""
185
+
case "${{ matrix.samples }}" in
186
+
samples/usecase/usecase1)
187
+
ALLOW="The referenced relationship 'managed/user/[^']+', does not exist|Object [^ ]+ not found in managed/user|org\\.forgerock\\.openidm\\.sync\\.SynchronizationException: The referenced relationship"
echo "----- Checking logs for errors/exceptions -----"
235
+
# Per-sample allow-list of expected, documented log-noise. See the
236
+
# rationale in the "Start OpenIDM" step above. Any pattern listed
237
+
# here is filtered out before deciding whether errors remain.
238
+
ALLOW=""
239
+
case "${{ matrix.samples }}" in
240
+
samples/usecase/usecase1)
241
+
ALLOW="The referenced relationship 'managed/user/[^']+', does not exist|Object [^ ]+ not found in managed/user|org\\.forgerock\\.openidm\\.sync\\.SynchronizationException: The referenced relationship"
242
+
;;
243
+
esac
177
244
status=0
178
245
while IFS= read -r f; do
179
-
if grep -E -n "ERROR|SEVERE|Exception|Throwable" "$f" > /tmp/log_errors.$$ 2>/dev/null; then
0 commit comments