|
@@ -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)
|
|
|
self.base_url = base_url
|
|
|
self.consumer_key = consumer_key
|
|
|
self.private_key = private_key
|
|
@@ -118,6 +119,7 @@ class BitbucketServerClient(IntegrationProxyClient):
|
|
|
super().__init__(
|
|
|
org_integration_id=org_integration_id,
|
|
|
verify_ssl=integration.metadata["verify_ssl"],
|
|
|
+ integration_id=integration.id,
|
|
|
logging_context=None,
|
|
|
)
|
|
|
|