foreman_rh_cloud 3.0.26 → 3.0.32

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a30fca135e4f60623ae8d50f3ae579b60b03769214d6635713f2d78d394c104
4
- data.tar.gz: 0da61a8209494baea39169da75800e5b09738c065712b249dbad21abb771f369
3
+ metadata.gz: a204ec60257c1312f0a0bb12676f7c835ca999818df927b29cb00bb2f44eb020
4
+ data.tar.gz: 416c5b4fac2965ca6c282a9c640632806f27a7a7e3a50b239c72b404ad4fce40
5
5
  SHA512:
6
- metadata.gz: bd3887751accfdb3f4873c69b74791483c690d1d884a3b122c9c2b70842bec4919965767174e75f8362be09de630d738979b8e5510b8cbf9f0fa496684cff690
7
- data.tar.gz: c6b5ef0482a81d7faf69f3f679b2e015b2ca01421bf1115b45607cd2f73072b7b001e9d82526c1f8c1bdbd9240e3a1013ef4e1d72db251f888909c0b21b80f21
6
+ metadata.gz: '03680cfc35ac8dd829cd495427e45afabf64eab7864b5db6b03ab998528d4b390fc7f5723bee2b358a3075ce9ce7d9317e4d408d8c7645fa9fca1c06e94c89d2'
7
+ data.tar.gz: e068877556691bb53eed6b720b87e595d6e467346dcf30923f9cd3c6e84674f81e27dd655532668963654e38117fa61039d8af75cfeb8443e921bcbfc7de3b47
@@ -26,7 +26,7 @@ module ForemanRhCloud
26
26
  headers: {
27
27
  params: forward_params,
28
28
  user_agent: http_user_agent(original_request),
29
- content_type: original_request.media_type,
29
+ content_type: original_request.media_type.presence || original_request.format.to_s,
30
30
  },
31
31
  }
32
32
  base_params.merge(path_params(original_request.path, certs))
@@ -193,7 +193,7 @@ GEM
193
193
  docile (1.3.5)
194
194
  domain_name (0.5.20190701)
195
195
  unf (>= 0.0.5, < 1.0.0)
196
- dynflow (1.5.0)
196
+ dynflow (1.4.9)
197
197
  algebrick (~> 0.7.0)
198
198
  apipie-params
199
199
  concurrent-ruby (~> 1.1.3)
@@ -2,9 +2,9 @@
2
2
 
3
3
  default: &default
4
4
  adapter: postgresql
5
- username: foreman
5
+ username: <%= ENV['PGUSER'] || 'foreman' %>
6
6
  password: foreman
7
- host: localhost
7
+ host: <%= ENV['PGHOST'] || 'localhost' %>
8
8
 
9
9
  test:
10
10
  <<: *default