From Docker docs — Get started
- Stack
- A group of interrelated services that share dependencies, can be orchestrated and scaled together (e.g., add visualizer and redis services). Swarm
<div id="container"></div> |
From Docker docs — Get started
describe 'Expectations' do | |
it 'fails with the wrong expectations' do | |
my_hash = { 'created_at' => Time.now } | |
expect(my_hash['created_at']).to be_a_kind_of(Time) | |
# expect(my_hash) | |
# .to eql({ 'created_at' => a_kind_of(Time) }) | |
# expect(my_hash) | |
# .to eq({ 'created_at' => a_kind_of(Time) }) |
I hereby claim:
To claim this, I am signing this object:
GET /soa/petition_ads/:id
(id
is the lead-in petition id)
additional params:
context=after_sign_sponsored
locale
country_code
include_phone_upsells
(only if phone_petition
is not in the user’s request)source=fe-services-app
REDIRECTS (301 http status code) | |
/p (petitions_path) if | |
user not identified | |
no previous signature | |
no lead-in petition found (missing or incorrect petition_id param) | |
(already happening -- we do nothing) OTHER DESTINATIONS per upsell_list_redirect |
Please see the document Post-Sign Logic Map for more information about the flow for Promoted Petitions and Sponsored Petitions.
mysql> SELECT * FROM user_targeting_conditions WHERE event_id = 1272920; | |
+-------+----------+-----------+ | |
| id | event_id | condition | | |
+-------+----------+-----------+ | |
| 14875 | 1272920 | cUS | | |
| 14876 | 1272920 | sCA | | |
+-------+----------+-----------+ | |
2 rows in set (0.00 sec) | |
mysql> SELECT * FROM user_targeting_conditions WHERE event_id = 1272920; |
WITH | |
config_oes_ids AS ( | |
SELECT (config->>'precedingOESId')::integer AS id, organization_id | |
FROM connections | |
GROUP BY organization_id | |
), | |
max_deliv_oes_ids AS ( | |
SELECT max(id) as id, organization_id | |
FROM deliverables | |
GROUP BY organization_id |