Merge "Make gitea description update failures nonfatal"
This commit is contained in:
commit
30cd357408
@ -210,12 +210,19 @@ class Gitea(object):
|
||||
description_update = {
|
||||
'description': description,
|
||||
}
|
||||
resp = self.patch(
|
||||
'/api/v1/repos/{org}/{repo}'.format(org=org, repo=repo),
|
||||
json=description_update)
|
||||
# Commented out as there is no good way to log only those projects
|
||||
# which have an updated description and as a result this is noisy.
|
||||
#self.log("Set description for:", project['project'])
|
||||
try:
|
||||
resp = self.patch(
|
||||
'/api/v1/repos/{org}/{repo}'.format(org=org, repo=repo),
|
||||
json=description_update)
|
||||
# Commented out as there is no good way to log only those
|
||||
# projects which have an updated description and as a result
|
||||
# this is noisy.
|
||||
#self.log("Set description for:", project['project'])
|
||||
except Exception as e:
|
||||
# Updating descriptions is best effort as we may fail due to
|
||||
# gitea bugs, but such a failure isn't critical.
|
||||
self.log("Failed to set desciption for:",
|
||||
project['project'], str(e))
|
||||
|
||||
def make_projects(self, projects, gitea_repos, csrf_token,
|
||||
settings_thread_pool, branches_thread_pool, futures):
|
||||
|
Loading…
Reference in New Issue
Block a user