Skip to content

Commit

Permalink
Change pool_max_wait type declaration
Browse files Browse the repository at this point in the history
This avoids an issue with latest puppet agent
But is not needed anyhow, as a minimal value of 0 already means wait indefinitely
  • Loading branch information
KoenDierckx authored Feb 29, 2024
1 parent b99c315 commit af22b77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
Stdlib::HTTPUrl $mysql_connector_url = 'https://dev.mysql.com/get/Downloads/Connector-J',
Optional[Integer[0]] $pool_min_size = undef,
Optional[Integer[0]] $pool_max_size = undef,
Optional[Integer[-1]] $pool_max_wait = undef,
Optional[Integer[0]] $pool_max_wait = undef,
Optional[String] $validation_query = undef,
Optional[Integer[0]] $validation_query_timeout = undef,
Optional[Integer[0]] $min_evictable_idle_time = undef,
Expand Down

0 comments on commit af22b77

Please sign in to comment.