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
Tried setting ryuk.container.timeout by creating a testcontainers.properties that contains the following:
ryuk.container.timeout=120
This is successfully picked up, but when TestcontainersConfiguration#getRyukTimeout is called is calls properties.getOrDefault, which returns a string "120" which is attempted to be cast to an Integer. This results in the following error:
java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer
Tried setting
ryuk.container.timeout
by creating atestcontainers.properties
that contains the following:This is successfully picked up, but when TestcontainersConfiguration#getRyukTimeout is called is calls
properties.getOrDefault
, which returns a string "120" which is attempted to be cast to anInteger
. This results in the following error:A fix for this is to change TestcontainersConfiguration#getRyukTimeout to
The text was updated successfully, but these errors were encountered: