gitlab-exporter 7.0.5 → 7.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/gitlab_exporter/database/ci_builds.rb +3 -6
- data/lib/gitlab_exporter/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f44f68c2a2d894b29ec2c891e0b6af0248ddaa2cb2ffe2c972c5ce08dd8de2e
|
|
4
|
+
data.tar.gz: 44156a1741197ac6da5db3ddd9a85c839b0c969e73edde7e723edcdd6b9b5b3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f031bc1502b34f26690cd009d24f3d3f0c0e18cdd1167a21b9e8f6a135c24927f229ac0a7214cdd633943b8d9d588e8f1e8ff0cdba75a3b2f0474fdaf260d8ed
|
|
7
|
+
data.tar.gz: e267adae77f66e5470cc7d60485d249bc3bb692e54380b0cfd5dd6b552a769ec0ea9147ef4bcca8c3d27bba0e37027c367a5125d2e86c98b74419ad11c0dba34
|
data/Gemfile.lock
CHANGED
|
@@ -21,8 +21,7 @@ module GitLab
|
|
|
21
21
|
ON namespaces.id = projects.namespace_id
|
|
22
22
|
LEFT JOIN namespace_statistics
|
|
23
23
|
ON namespace_statistics.namespace_id = namespaces.id
|
|
24
|
-
JOIN application_settings
|
|
25
|
-
ON application_settings.id = 1
|
|
24
|
+
JOIN application_settings ON (TRUE)
|
|
26
25
|
WHERE ci_builds.type = 'Ci::Build'
|
|
27
26
|
AND ci_builds.status = '%s'
|
|
28
27
|
-- The created_at filter has been introduced for performance reasons only
|
|
@@ -95,8 +94,7 @@ module GitLab
|
|
|
95
94
|
ON namespaces.id = projects.namespace_id
|
|
96
95
|
LEFT JOIN namespace_statistics
|
|
97
96
|
ON namespace_statistics.namespace_id = namespaces.id
|
|
98
|
-
JOIN application_settings
|
|
99
|
-
ON application_settings.id = 1
|
|
97
|
+
JOIN application_settings ON (TRUE)
|
|
100
98
|
WHERE ci_builds.type = 'Ci::Build'
|
|
101
99
|
AND ci_builds.status = 'running'
|
|
102
100
|
-- The created_at filter has been introduced for performance reasons only
|
|
@@ -175,8 +173,7 @@ module GitLab
|
|
|
175
173
|
ON namespaces.id = projects.namespace_id
|
|
176
174
|
LEFT JOIN namespace_statistics
|
|
177
175
|
ON namespace_statistics.namespace_id = namespaces.id
|
|
178
|
-
JOIN application_settings
|
|
179
|
-
ON application_settings.id = 1
|
|
176
|
+
JOIN application_settings ON (TRUE)
|
|
180
177
|
WHERE ci_builds.type = 'Ci::Build'
|
|
181
178
|
AND ci_builds.status IN ('running', 'pending')
|
|
182
179
|
-- The created_at filter has been introduced for performance reasons only
|