-
Notifications
You must be signed in to change notification settings - Fork 188
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
Mesos 0.23.0 #657
Mesos 0.23.0 #657
Conversation
when you have a chance, can you rebase? those first 3 commits shouldn't be in the PR |
@@ -35,8 +35,10 @@ | |||
<basepom.release.profiles>oss-release,build-swagger-documentation</basepom.release.profiles> | |||
|
|||
<baragon.version>0.1.4</baragon.version> | |||
<mesos.docker.tag>0.21.1-1.1.ubuntu1404</mesos.docker.tag> <!-- 0.21.0-1.0.ubuntu1404 is missing for mesos-slave --> | |||
<mesos.docker.tag>0.23.0-1.0.ubuntu1404</mesos.docker.tag> <!-- 0.21.0-1.0.ubuntu1404 is missing for mesos-slave --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
comment unnecessary here
@tpetr merged master in and removed that comment, diff is now just the appropriate commits |
|
||
@JsonCreator | ||
public SingularityDockerInfo(@JsonProperty("image") String image, | ||
@JsonProperty("privileged") boolean privileged, | ||
@JsonProperty("network") SingularityDockerNetworkType network, | ||
@JsonProperty("portMappings") Optional<List<SingularityDockerPortMapping>> portMappings) { | ||
@JsonProperty("portMappings") Optional<List<SingularityDockerPortMapping>> portMappings, | ||
@JsonProperty("forcePullImage") boolean forcePullImage, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consider Optional<Boolean>
for backwards compatibility
@tpetr made that boolean optional, and also added a constructor that matched the previous version, marked as deprecated |
@tpetr @wsorenson