-
Notifications
You must be signed in to change notification settings - Fork 183
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
Pairing expiry reduction #1401
Pairing expiry reduction #1401
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
branch = "pairing-expiry"; | ||
kind = branch; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to merge this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, until we don't have a monorepo I need to reference to updated appkit
Task { | ||
if let pairingTopic = pairingTopic { | ||
removePairing(pairingTopic: pairingTopic) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe:
Task { | |
if let pairingTopic = pairingTopic { | |
removePairing(pairingTopic: pairingTopic) | |
} | |
} | |
if let pairingTopic = pairingTopic { | |
Task { | |
removePairing(pairingTopic: pairingTopic) | |
} | |
} |
let pairing = pairingStore.getPairing(forTopic: pairingTopic), | ||
!pairing.active { | ||
pairingStore.delete(topic: pairingTopic) | ||
// todo - delete and unsubscribe |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
Quality Gate failedFailed conditions |
Description
Resolves # (issue)
How Has This Been Tested?
Due Dilligence