Commit b389531
Fix cluster_application_kill method
The recently introduced cluster_application_kill() method was erroneously
calling `self.put()` to issue the status change to `KILLED`. This resulted
in an AttributeError exception:
```
''ResourceManager' object has no attribute 'put''
```
in client code.
The base class issues put calls, via its `update()` method. Once updated,
application kill requests succeed.1 parent e017dcf commit b389531
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
213 | 213 | | |
214 | 214 | | |
215 | 215 | | |
216 | | - | |
| 216 | + | |
217 | 217 | | |
218 | 218 | | |
219 | 219 | | |
| |||
0 commit comments