-
Notifications
You must be signed in to change notification settings - Fork 645
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NPE when cacheFrom is missing from config #1274
Comments
@travishaagen Which version are you using? |
I was going from |
oh, so it's still reproducible on 0.31.0. Could you please raise a PR to resolve this? |
travishaagen
added a commit
to travishaagen/docker-maven-plugin
that referenced
this issue
Oct 9, 2019
Done! :) |
rhuss
pushed a commit
that referenced
this issue
Oct 10, 2019
thanks ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
A
NullPointerException
is thrown whencacheFrom
is missing from the configuration.Info
The fix is most likely to update the following line in
PropertyConfigHandler
to check forconfig.getCacheFrom()
returningnull
, instead of calling.toString()
in all cases:The workaround is to provide an empty tag in the config:
The text was updated successfully, but these errors were encountered: