Skip to content

Commit

Permalink
name
Browse files Browse the repository at this point in the history
  • Loading branch information
Weves committed Sep 28, 2024
1 parent 9d69b48 commit c2c4697
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions backend/danswer/connectors/danswer_jira/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,6 @@ def fetch_jira_issues_batch(
)
continue

semantic_rep = ticket_content

page_url = f"{jira_client.client_info()}/browse/{jira.key}"

people = set()
Expand Down Expand Up @@ -191,7 +189,7 @@ def fetch_jira_issues_batch(
doc_batch.append(
Document(
id=page_url,
sections=[Section(link=page_url, text=semantic_rep)],
sections=[Section(link=page_url, text=ticket_content)],
source=DocumentSource.JIRA,
semantic_identifier=jira.fields.summary,
doc_updated_at=time_str_to_utc(jira.fields.updated),
Expand Down

0 comments on commit c2c4697

Please sign in to comment.