Skip to content

Commit

Permalink
Merge ccde173 into 738c8eb
Browse files Browse the repository at this point in the history
  • Loading branch information
dewet22 committed Feb 10, 2016
2 parents 738c8eb + ccde173 commit d23be52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/testing/postgresql.py
Expand Up @@ -113,7 +113,8 @@ def is_server_available(self):

def terminate(self, *args):
# send SIGINT instead of SIGTERM
super(Postgresql, self).terminate(signal.SIGINT)
if Postgresql:
super(Postgresql, self).terminate(signal.SIGINT)


class PostgresqlFactory(DatabaseFactory):
Expand Down

0 comments on commit d23be52

Please sign in to comment.