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
The problem is, that the environment map for process is not able to handle null values (empty strings are okay, but not null).
If a key is not null but the value is null the exception will occur.
Wanted
If a key is null it shall be ignored
if a value is null a warning shall be logged about missing value for the key and it shall be skipped.
The text was updated successfully, but these errors were encountered:
- the new environment access handles null keys and null values and
skips put operation in these cases + does log warnings
- improved PDSKeyToEnvConverter + existing test
- the new environment access handles null keys and null values and
skips put operation in these cases + does log warnings
- improved PDSKeyToEnvConverter + existing test
Situation
If we have a PDS job parameter which is defined this way:
It can happen that the environment variable (on SecHub Server) is not defined/not set.
In this case following exception is thrown:
Analyze
The problem is, that the environment map for process is not able to handle null values (empty strings are okay, but not null).
If a key is not null but the value is null the exception will occur.
Wanted
The text was updated successfully, but these errors were encountered: