Skip to content
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

feat: stale event detector #13009

Merged
merged 24 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5c9e3f6
Initial work on stale event detector.
cody-littley Apr 25, 2024
accd1d6
Bugfixes.
cody-littley Apr 25, 2024
801fe35
Added transaction resubmitter.
cody-littley Apr 25, 2024
ad7b0d5
Changed how transaction resubmitter was wired.
cody-littley Apr 25, 2024
af4832f
Checkin.
cody-littley Apr 25, 2024
aa79771
Better metrics.
cody-littley Apr 25, 2024
76ce01f
Unit tests, app notification.
cody-littley Apr 25, 2024
6a630a8
Publish on the platform publisher thread.
cody-littley Apr 25, 2024
cf7dc1f
Checkin.
cody-littley Apr 25, 2024
43eb847
Diagram improvements.
cody-littley Apr 25, 2024
219308c
Merge branch 'develop' into 13001-stale-event-detector
cody-littley Apr 25, 2024
848c121
Added test for the transaction resubmitter.
cody-littley Apr 26, 2024
606b588
Unit tests, fixed bug uncovered by test.
cody-littley Apr 26, 2024
89d2a73
Cleanup.
cody-littley Apr 26, 2024
bfb1a39
Merge branch 'develop' into 13001-stale-event-detector
cody-littley Apr 29, 2024
8031915
Made suggested changes.
cody-littley Apr 29, 2024
b27a286
Changed wiring to fix race condition.
cody-littley Apr 29, 2024
1b79c32
Merge branch 'develop' into 13001-stale-event-detector
cody-littley May 7, 2024
8a389f8
Merge branch 'develop' into 13001-stale-event-detector
cody-littley May 7, 2024
ba7749b
Cleanup.
cody-littley May 7, 2024
0ea3469
Merge branch 'develop' into 13001-stale-event-detector
cody-littley May 8, 2024
2be08e2
Merge branch 'develop' into 13001-stale-event-detector
cody-littley May 9, 2024
aabbd78
Fix borked merge.
cody-littley May 9, 2024
824d8b8
Merge branch 'develop' into 13001-stale-event-detector
cody-littley May 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion platform-sdk/docs/core/wiring-diagram.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ public class WiringComponentProxy implements InvocationHandler {
@Override
public Object invoke(@NonNull final Object proxy, @NonNull final Method method, @NonNull final Object[] args)
throws Throwable {

if (method.getName().equals("toString")) {
// Handle this specially, the debugger likes to call toString()
// on the proxy which disrupts normal behavior when debugging.
return "WiringComponentProxy";
}

mostRecentlyInvokedMethod = Objects.requireNonNull(method);
return null;
}
Expand Down

This file was deleted.