go-marathon icon indicating copy to clipboard operation
go-marathon copied to clipboard

A GO API library for working with Marathon

Results 27 go-marathon issues
Sort by recently updated
recently updated
newest added

Hello, there! I'm working on packaging your library on Debian and was wondering it it's possible for you to make a new release (v0.7.***2***?), several fixes you've made since v0.7.1...

This enables to terminate all pending health checks. Apart from making our tests shut down cleanly, it will also give users an opportunity to stop otherwise potentially leaking health-checking goroutines.

Hello, I want to add support for list and fetching files from a task's sandbox via the endpoints described here: https://docs.mesosphere.com/1.12/monitoring/logging/logging-api/#/ I was not sure how you felt about supporting...

Marathon supports Pod now. And in the v1.7.0 events, `App` can be omitted if StepAction only includes `Pod` .

Hello, We recently noticed when using the event listener functionality that the `RemoveEventListener()` does not clean up the stream if using SSE mode. Based on the current code, it seems...

https://github.com/gambol99/go-marathon/blob/6d1efaff86d484701d242bee396e7bdd35ce27d2/task.go#L70 ``` type KillTaskOpts struct { Scale bool `url:"scale,omitempty"` Force bool `url:"force,omitempty"` Wipe bool `url:"wipe,omitempty"` } ```

> HA -- run any number of Marathon schedulers, but only one gets elected as leader; if you access a non-leader, your request gets proxied to the current leader As...

Hello! In mesosphere/marathon#6211, we will change the behavior in 1.7.x to respond with a redirect call when /v2/events is requested from a standby/non-leader Marathon instance. The code should be updated...

Add goroutine leak testing to tests to probe for goroutine leakage, as mentioned in https://github.com/gambol99/go-marathon/issues/208 In particular: ``` === RUN TestSSEWithManyListeners --- FAIL: TestSSEWithManyListeners (5.05s) leaktest.go:129: leaktest: timed out checking...