testcontainers-mariadb 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ddda1e688d370cee4be396c175b28c4943ffcc29e9bc9279826c5dafb29f5013
4
- data.tar.gz: 35acaa90e1cbbdbd0bdbc68b77d0e60e5d0fe09f6c8f266b4a6421b1526e65eb
3
+ metadata.gz: ca4a63e6b975cabdeb6e17af0aef686b628523e598f4e8d12835ae3c8bed5d8f
4
+ data.tar.gz: '0812a37c72cb36067220848f47d990568ed402a9df15dcc2137e28402225021a'
5
5
  SHA512:
6
- metadata.gz: 84f999615a260a04a663eee1e0f1ecab3ab22d60a65211565fd0c98bd93ff76bbd422d77749b5f972e6567c67a074b13ccedc5f8c89cb6416416ea8b5f74fa71
7
- data.tar.gz: d890faef3913f657a509442b0a5147a28358ca14265d46c8510ea0d2d011dbfd0806a73e332801bd79fea32eb82b026ab1a135d0795cc0a47369ef1732888917
6
+ metadata.gz: 0c54a7d0de4d341f0d5163bfb3931f2c7358fe70458072790d229bda3c360c66d1cfc94f6b871f6e8208437b2f2a764ed348ab1ac04b59ac06224a4dd6b0f0c0
7
+ data.tar.gz: 0d8e97786796c24ef427e6e5454675bf8b23dc4e045141e2d7c78a645fea0f842692b12a00628acdd436d0461a999c31df8d55415b30998f4f4efe2d673a0a9d
data/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
- ## [0.1.0] - 2023-05-13
1
+ ## [0.1.1] - 2023-06-13
2
+
3
+ ### Fixed
4
+
5
+ - Use healthcheck script shipped with the Docker image
6
+
7
+ ## [0.1.0] - 2023-06-10
2
8
 
3
9
  ### Added
4
10
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Testcontainers
4
4
  module Mariadb
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
@@ -126,7 +126,7 @@ module Testcontainers
126
126
  end
127
127
 
128
128
  def _default_healthcheck_options
129
- {test: ["/usr/bin/mysql", "--protocol=TCP", "--port=#{port}", "--user=#{username}", "--password=#{password}", database, "--silent", "--execute=SELECT 1;"], interval: 1, timeout: 5, retries: 5}
129
+ {test: ["/usr/local/bin/healthcheck.sh", "--connect"], interval: 1, timeout: 5, retries: 5}
130
130
  end
131
131
  end
132
132
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testcontainers-mariadb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillermo Iguaran
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-10 00:00:00.000000000 Z
11
+ date: 2023-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: testcontainers-core