redhat_access_lib 1.1.0 → 1.1.1
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/lib/api/telemetry_api.rb +1 -1
- data/redhat_access_lib.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be0a9cb4e7c26e0172f65d1eac2109912d82a50a
|
4
|
+
data.tar.gz: 0dba32752fa2a23e3991934d8df5a2fb99dce887
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a116f9c4fdc85a731264407a9a8c8e6e9a7195ccd7acdf31732dd761c9ea336ab2d882d3afcdf6df1db64732199073e95da97d47b85a69a3e57838cfb8821938
|
7
|
+
data.tar.gz: 729dc49e066eb90b09cfc1a252339bde60ed4419f97075951b25f59c7f13893b760c3686d2525c5fd28c7dc50e9d28c21d7c7709f3416d36d2385a19dfbeb9bb
|
data/lib/api/telemetry_api.rb
CHANGED
@@ -148,7 +148,7 @@ module RedHatSupportLib::TelemetryApi
|
|
148
148
|
# Returns the machines hash used for /subset/$hash/
|
149
149
|
def get_hash(machines)
|
150
150
|
branch = get_branch_id
|
151
|
-
hash = Digest::SHA1.hexdigest(machines.join)
|
151
|
+
hash = Digest::SHA1.hexdigest(machines.sort.join)
|
152
152
|
"#{branch}__#{hash}"
|
153
153
|
end
|
154
154
|
|
data/redhat_access_lib.gemspec
CHANGED