Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upFixes ad conversions fail after a creative has expired #5834
+82
−16
Conversation
e650eeb
to
0613c7a
| base::Time end_at_timestamp; | ||
| if (!base::Time::FromUTCString(campaign_info.end_at.c_str(), | ||
| &end_at_timestamp)) { | ||
| BLOG(1, "FOOBAR.2: " << campaign_info.end_at); |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
| "expiry_timestamp TIMESTAMP, " | ||
| "UNIQUE(creative_set_id, type, url_pattern, " | ||
| "observation_window), " | ||
| "PRIMARY KEY(creative_set_id, type, url_pattern, " |
This comment has been minimized.
This comment has been minimized.
moritzhaller
Jun 13, 2020
Collaborator
should expiry_timestamp be part of the PK to allow for a new conversion with an updated expiry date to be saved in the case that a campaign date updated in flight?
This comment has been minimized.
This comment has been minimized.
tmancey
Jun 13, 2020
•
Author
Collaborator
If the observation_window or the expiry_timestamp change we want to update the current entry. And only insert entries if the creative_set_id, type and url_pattern are unique
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
tmancey commentedJun 13, 2020
Resolves brave/brave-browser#10240
Submitter Checklist:
npm run lint)git rebase master(if needed).git rebase -ito squash commits (if needed).Test Plan:
Default/ads_service/bundfle_statesqlite database when the expiry date has elapsed (seeexpiry_timestampcolumn)Reviewer Checklist:
After-merge Checklist:
changes has landed on.