Skip to content

Commit

Permalink
Merge pull request #31 from pkarkazis/master
Browse files Browse the repository at this point in the history
bug fix
  • Loading branch information
pkarkazis authored Jun 20, 2017
2 parents e4dfefa + 9057675 commit c603f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manager/api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def delete(self, request, *args, **kwargs):
queryset = monitoring_services.objects.all()
srvid = self.kwargs['sonata_srv_id']

queryset.filter(sonata_srv_id=srvid)
queryset = queryset.filter(sonata_srv_id=srvid)
print queryset.count()

if queryset.count() > 0:
Expand Down

0 comments on commit c603f6e

Please sign in to comment.