-
Notifications
You must be signed in to change notification settings - Fork 7
Improve Opt Out Sender error handling and observability #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
vishalegbert-ttd
merged 18 commits into
master
from
vse-UID2-1666-improve-opt-out-sender-error-handling-and-observability
Aug 30, 2023
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
8e78c1b
Improve Opt Out Sender error handling and observability
vishalegbert-ttd d29c10a
Merge remote-tracking branch 'origin/master' into vse-UID2-1666-impro…
vishalegbert-ttd 64bdda2
Update allowed status codes
vishalegbert-ttd eff38bc
Released Snapshot version: 2.5.3-SNAPSHOT
3039f74
Released Snapshot version: 2.5.4-SNAPSHOT
9979664
Released Snapshot version: 2.5.5-SNAPSHOT
a612155
Switch to Java HttpRequest lib
vishalegbert-ttd ab98199
Released Snapshot version: 2.5.7-SNAPSHOT
0fba192
Attempt fixing dead lock
vishalegbert-ttd 029aba1
Merge branch 'vse-UID2-1666-improve-opt-out-sender-error-handling-and…
vishalegbert-ttd 726c2ab
Remove blocking call
vishalegbert-ttd f5179b2
Released Snapshot version: 2.5.10-SNAPSHOT
a70e9e4
Make isReplaying atomic
vishalegbert-ttd e5b90db
Code clearn up
vishalegbert-ttd 1ecb3a2
Merge branch 'vse-UID2-1666-improve-opt-out-sender-error-handling-and…
vishalegbert-ttd bd1817c
Clean up
vishalegbert-ttd c0394d5
Address CR comments
vishalegbert-ttd a0a3dfb
Merge remote-tracking branch 'origin/master' into vse-UID2-1666-impro…
vishalegbert-ttd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| package com.uid2.optout.util; | ||
|
|
||
| public class Tuple { | ||
vishalegbert-ttd marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| public static class Tuple2<T1, T2> { | ||
| private final T1 item1; | ||
| private final T2 item2; | ||
|
|
||
| public Tuple2(T1 item1, T2 item2) { | ||
| assert item1 != null; | ||
| assert item2 != null; | ||
|
|
||
| this.item1 = item1; | ||
| this.item2 = item2; | ||
| } | ||
|
|
||
| public T1 getItem1() { return item1; } | ||
| public T2 getItem2() { return item2; } | ||
|
|
||
| @Override | ||
| public int hashCode() { return item1.hashCode() ^ item2.hashCode(); } | ||
|
|
||
| @Override | ||
| public boolean equals(Object o) { | ||
| if (!(o instanceof Tuple2)) return false; | ||
| Tuple2 pairo = (Tuple2) o; | ||
| return this.item1.equals(pairo.item1) && | ||
| this.item2.equals(pairo.item2); | ||
| } | ||
| } | ||
| } | ||
|
|
||
Oops, something went wrong.
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.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.