-
Notifications
You must be signed in to change notification settings - Fork 153
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
Updates for Marathon 1.9.109 #270
Conversation
+1 here, 0.12 don't work with 1.9.136 |
@dPeS do you get the role error when using my changes or do you encounter any other errors? I'd like to improve my code if I can. |
marathon/models/deployment.py
Outdated
self.app = app | ||
self.apps = apps | ||
self.app = assert_valid_path(app.lower()) | ||
self.apps = assert_valid_path(apps.lower()) |
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.
Is apps expected to be a string you can validate on like this?
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.
I believe so, I tried different iterations and this was the one that worked for me. I admit I'm no python expert.
Can you update the readme and maybe the test matrix? |
@solarkennedy is this what you asked for? |
Cool. Can you check the failing tests next? They look real. |
@solarkennedy do you happen to have or now of a docker image that has all of these versions of mesos and marathon already baked in? I'm trying to build the 14.04 image and keeps failing on |
I'm not aware of such an image. I would accept a PR to use a standard image: Even if that means we have to only test against 1 version. I don't know if there is a replacement for that PPA, or maybe the docker image itself could be upgraded to 20.04? |
@solarkennedy I'll try https://hub.docker.com/r/mesosphere/marathon and Ubuntu 20.04, I'll get back to you |
@solarkennedy I fixed the issues with the tests, whenever I have time I'll make another PR to fix the tests and use https://hub.docker.com/r/mesosphere/marathon |
No description provided.