Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitamalinov committed Mar 9, 2024
1 parent e83d7d8 commit defff52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion services/supabase/supabase_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ def increment_request_count(self, installation_id: int) -> None:
if (data[1] and data[1][0]):
self.client.table(table_name="repo_info").update(json={"requests": data[1][0]['requests'] + 1}).eq(column="installation_id", value=installation_id).execute()
except Exception as e:
logging.error(msg=f"Increment Request Count Error: {e}")
logging.error(msg=f"Increment Request Count Error: {e}")

0 comments on commit defff52

Please sign in to comment.