Skip to content

Commit

Permalink
fix ident
Browse files Browse the repository at this point in the history
  • Loading branch information
morlins committed Mar 15, 2017
1 parent 132dbfa commit ee6d689
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/multipush.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ def post(self):
for self.notification in notifications:
self.token = self.notification['token']
# Method that send multiple push notifications asynchronously calling callback when finished.
#result = pool.apply_async(self.async_multipush, [self.notification], callback=self.finish)
self.async_multipush(self.notification)
#result = pool.apply_async(self.async_multipush, [self.notification], callback=self.finish)
self.async_multipush(self.notification)
except Exception as ex:
_logger.error(ex)
except Exception as ex:
Expand Down

0 comments on commit ee6d689

Please sign in to comment.