mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 19:05:18 +00:00
add try catch
This commit is contained in:
parent
f2b74b6970
commit
8fb9affef3
1 changed files with 6 additions and 3 deletions
|
|
@ -87,9 +87,12 @@ class GitLabProvider(GitProvider):
|
||||||
return [change['new_path'] for change in self.mr.changes()['changes']]
|
return [change['new_path'] for change in self.mr.changes()['changes']]
|
||||||
|
|
||||||
def publish_description(self, pr_title: str, pr_body: str):
|
def publish_description(self, pr_title: str, pr_body: str):
|
||||||
self.mr.title = pr_title
|
try:
|
||||||
self.mr.description = pr_body
|
self.mr.title = pr_title
|
||||||
self.mr.save()
|
self.mr.description = pr_body
|
||||||
|
self.mr.save()
|
||||||
|
except Exception as e:
|
||||||
|
logging.exception(f"Could not update merge request {self.id_mr} description: {e}")
|
||||||
|
|
||||||
def publish_comment(self, mr_comment: str, is_temporary: bool = False):
|
def publish_comment(self, mr_comment: str, is_temporary: bool = False):
|
||||||
comment = self.mr.notes.create({'body': mr_comment})
|
comment = self.mr.notes.create({'body': mr_comment})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue