-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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(integrations): create redis keys using integration_id #54655
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #54655 +/- ##
=======================================
Coverage 79.76% 79.76%
=======================================
Files 5001 5000 -1
Lines 212325 212296 -29
Branches 36184 36176 -8
=======================================
- Hits 169352 169341 -11
+ Misses 37767 37748 -19
- Partials 5206 5207 +1
|
@@ -40,7 +40,8 @@ class BitbucketServerSetupClient(ApiClient): | |||
authorize_url = "{}/plugins/servlet/oauth/authorize?oauth_token={}" | |||
integration_name = "bitbucket_server_setup" | |||
|
|||
def __init__(self, base_url, consumer_key, private_key, verify_ssl=True): | |||
def __init__(self, base_url, consumer_key, private_key, verify_ssl=True, *args, **kwargs): | |||
super().__init__(*args, **kwargs) |
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.
I don't know that this will help for bitbucket server - I don't see this initialized with an integration id and the parent class doesn't have it either.
Adding integration id's to integration clients to be used to create redis keys for the
IntegrationRequestBuffer
used to detect and disable integrations for the Notify on Disabled Integration project