fix(jira): cast pydantic url to string.
This commit is contained in:
parent
ac78f4a7ee
commit
a85bf399b6
1 changed files with 1 additions and 1 deletions
|
|
@ -128,5 +128,5 @@ class JIRAIntegration(integration_base.BaseIntegration):
|
|||
return self.add(
|
||||
username=data.username,
|
||||
token=data.token,
|
||||
url=data.url
|
||||
url=str(data.url)
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue