Job is failing on warning
#42989
-
Heyy, is there a way to disable failing when triggering a warning ? Ty by advance |
Beta Was this translation helpful? Give feedback.
Answered by
henzeb
Jun 28, 2022
Replies: 1 comment 1 reply
-
Are you sure it's a warning, and not something else? You can change the php This will ignore any warnings. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
LeGmask
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Are you sure it's a warning, and not something else?
You can change the php
error_reporting(E_ALL);
toerror_reporting(E_ALL &~ E_USER_WARNING);
or something similar.This will ignore any warnings.