fix(chalice): sourcemaps upload (#2225)

This commit is contained in:
Kraiem Taha Yassine 2024-05-30 12:23:34 +02:00 committed by GitHub
parent 1ae48fa722
commit 721178413f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -251,7 +251,7 @@ def get_by_project_key(project_key):
{"project_key": project_key})
cur.execute(query=query)
row = cur.fetchone()
return row["project_id"] if row else None
return helper.dict_to_camel_case(row)
def get_project_key(project_id):