feat(chalice): changed recordings response
feat(chalice): updated dependencies feat(crons): updated dependencies feat(alerts): updated dependencies
This commit is contained in:
parent
3dfa487ac5
commit
eb9fc2c4cb
6 changed files with 21 additions and 21 deletions
|
|
@ -1,6 +1,6 @@
|
|||
requests==2.28.2
|
||||
requests==2.29.0
|
||||
urllib3==1.26.15
|
||||
boto3==1.26.112
|
||||
boto3==1.26.122
|
||||
pyjwt==2.6.0
|
||||
psycopg2-binary==2.9.6
|
||||
elasticsearch==8.7.0
|
||||
|
|
@ -8,8 +8,8 @@ jira==3.5.0
|
|||
|
||||
|
||||
|
||||
fastapi==0.95.0
|
||||
uvicorn[standard]==0.21.1
|
||||
fastapi==0.95.1
|
||||
uvicorn[standard]==0.22.0
|
||||
python-decouple==3.8
|
||||
pydantic[email]==1.10.7
|
||||
apscheduler==3.10.1
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
requests==2.28.2
|
||||
requests==2.29.0
|
||||
urllib3==1.26.15
|
||||
boto3==1.26.112
|
||||
boto3==1.26.122
|
||||
pyjwt==2.6.0
|
||||
psycopg2-binary==2.9.6
|
||||
elasticsearch==8.7.0
|
||||
|
|
@ -8,8 +8,8 @@ jira==3.5.0
|
|||
|
||||
|
||||
|
||||
fastapi==0.95.0
|
||||
uvicorn[standard]==0.21.1
|
||||
fastapi==0.95.1
|
||||
uvicorn[standard]==0.22.0
|
||||
python-decouple==3.8
|
||||
pydantic[email]==1.10.7
|
||||
apscheduler==3.10.1
|
||||
|
|
|
|||
|
|
@ -73,9 +73,9 @@ def search_records(project_id: int, data: schemas_ee.AssistRecordSearchPayloadSc
|
|||
cur.execute(query)
|
||||
rows = helper.list_to_camel_case(cur.fetchall())
|
||||
if len(rows) == 0:
|
||||
return {"count": 0, "records": []}
|
||||
return {"total": 0, "records": []}
|
||||
|
||||
results = {"count": rows[0]["count"]}
|
||||
results = {"total": rows[0]["count"]}
|
||||
for r in rows:
|
||||
r.pop("count")
|
||||
results["records"] = results
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
requests==2.28.2
|
||||
requests==2.29.0
|
||||
urllib3==1.26.15
|
||||
boto3==1.26.112
|
||||
boto3==1.26.122
|
||||
pyjwt==2.6.0
|
||||
psycopg2-binary==2.9.6
|
||||
elasticsearch==8.7.0
|
||||
|
|
@ -8,8 +8,8 @@ jira==3.5.0
|
|||
|
||||
|
||||
|
||||
fastapi==0.95.0
|
||||
uvicorn[standard]==0.21.1
|
||||
fastapi==0.95.1
|
||||
uvicorn[standard]==0.22.0
|
||||
python-decouple==3.8
|
||||
pydantic[email]==1.10.7
|
||||
apscheduler==3.10.1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
requests==2.28.2
|
||||
requests==2.29.0
|
||||
urllib3==1.26.15
|
||||
boto3==1.26.112
|
||||
boto3==1.26.122
|
||||
pyjwt==2.6.0
|
||||
psycopg2-binary==2.9.6
|
||||
elasticsearch==8.7.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
requests==2.28.2
|
||||
requests==2.29.0
|
||||
urllib3==1.26.15
|
||||
boto3==1.26.112
|
||||
boto3==1.26.122
|
||||
pyjwt==2.6.0
|
||||
psycopg2-binary==2.9.6
|
||||
elasticsearch==8.7.0
|
||||
|
|
@ -8,8 +8,8 @@ jira==3.5.0
|
|||
|
||||
|
||||
|
||||
fastapi==0.95.0
|
||||
uvicorn[standard]==0.21.1
|
||||
fastapi==0.95.1
|
||||
uvicorn[standard]==0.22.0
|
||||
python-decouple==3.8
|
||||
pydantic[email]==1.10.7
|
||||
apscheduler==3.10.1
|
||||
|
|
@ -20,4 +20,4 @@ python3-saml==1.15.0
|
|||
python-multipart==0.0.6
|
||||
|
||||
redis==4.5.4
|
||||
#confluent-kafka==2.1.0
|
||||
#confluent-kafka==2.1.0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue