publish each suggestion seperatly only on gitlab

This commit is contained in:
mrT23
2023-10-08 16:50:25 +03:00
parent 66a5f06b45
commit 1b3fb49f9c
2 changed files with 6 additions and 2 deletions

View File

@ -138,8 +138,8 @@ class PRCodeSuggestions:
if get_settings().config.verbosity_level >= 2:
logging.info(f"Could not parse suggestion: {d}")
# is_successful = self.git_provider.publish_code_suggestions(code_suggestions)
if True:
is_successful = self.git_provider.publish_code_suggestions(code_suggestions)
if not is_successful:
# logging.info("Failed to publish code suggestions, trying to publish each suggestion separately")
for code_suggestion in code_suggestions:
self.git_provider.publish_code_suggestions([code_suggestion])