Fix the incorrect work of method _removeApplicationEndpoints()

Fixed typo in method implementation. `select` command was used
for data filtration instead of `where` 

Change-Id: I80b859333089865f8f054b3cf35746e65eeef192
Closes-Bug: #1443686
This commit is contained in:
Dmytro Dovbii 2015-04-14 12:40:03 +03:00
parent 7cb39996f0
commit fc827e50b2
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ Methods:
- applicationName:
Contract: $.string().notNull()
Body:
- $.applicationEndpoints: $.applicationEndpoints.select($.applicationName != $applicationName)
- $.applicationEndpoints: $.applicationEndpoints.where($.applicationName != $applicationName)
deleteContainer: