Skip to content

Commit

Permalink
still return false if not list
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed Sep 11, 2018
1 parent 4d6b26b commit 301b423
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions postgres/datadog_checks/postgres/postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,10 @@ def _is_above(self, key, db, version_to_compare):

return v > vc

# return True if version is the same
return True
# return True if version is the same
return True

return False

def _is_8_3_or_above(self, key, db):
return self._is_above(key, db, [8, 3, 0])
Expand Down

0 comments on commit 301b423

Please sign in to comment.