Skip to content

Commit

Permalink
Merge pull request #23065 from jrafanie/bump_postgres_versions
Browse files Browse the repository at this point in the history
Postgres 13 is the absolute minimum with Radjabov
  • Loading branch information
Fryguy authored Jun 13, 2024
2 parents b8ca3b3 + 5c5772f commit 06ff5b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/initializers/postgres_required_versions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ def initialize(*args)
def check_version
msg = "The version of PostgreSQL being connected to (#{postgresql_version}) is incompatible with #{Vmdb::Appliance.PRODUCT_NAME} (130000 / 13 required)"

if postgresql_version < 10_00_00
if postgresql_version < 13_00_00
raise msg
end

if postgresql_version >= 14_00_00
if postgresql_version >= 17_00_00
$stderr.puts msg
end
end
Expand Down

0 comments on commit 06ff5b8

Please sign in to comment.