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
Jib's checks if any of the keys and values set in the container.environment configuration is null, which is super helpful. However, the error message when an container.environment value is null currently reads only like this: "environment map contains null values". For someone not so deep into Jib, this could be not enough of a hint to the actual problem.
Expected behavior:
The error message should contain the offending keys, for example like so: "environment map contains null values for key(s): FOO, BAR, BAZ"
Steps to reproduce:
Use an environment map with a value set to null
Run jib (e.g. ./gradlew jib)
I can offer a solution via PR.
The text was updated successfully, but these errors were encountered:
Environment:
Description of the issue:
Jib's checks if any of the keys and values set in the
container.environment
configuration isnull
, which is super helpful. However, the error message when ancontainer.environment
value isnull
currently reads only like this: "environment map contains null values". For someone not so deep into Jib, this could be not enough of a hint to the actual problem.Expected behavior:
The error message should contain the offending keys, for example like so: "environment map contains null values for key(s): FOO, BAR, BAZ"
Steps to reproduce:
null
./gradlew jib
)I can offer a solution via PR.
The text was updated successfully, but these errors were encountered: