Skip to content

Commit

Permalink
Merge branch 'main' into artem/add-error-monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-shelkovnikov authored Jul 2, 2024
2 parents c42fed8 + 31655d9 commit 7bc85bb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion requirements/aarch64.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Linux ARM
-r framework.txt

aioboto3==10.3.0
pymongo==4.6.3
motor==3.4.0
smbprotocol==1.9.0
Expand Down
1 change: 1 addition & 0 deletions requirements/framework.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ simple-term-menu==1.6.4
graphql-core==3.2.3
notion-client==2.2.1
certifi==2023.7.22
aioboto3==12.4.0
2 changes: 1 addition & 1 deletion requirements/ftest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mysql-connector-python==8.1.0
google-auth==2.22.0
google-cloud-storage==2.10.0
asyncpg==0.28.0
boto3==1.24.59
boto3==1.34.69
oracledb==1.2.2
smbprotocol==1.10.1
yattag==1.15.1
1 change: 0 additions & 1 deletion requirements/x86_64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@

pymongo==4.6.3
motor==3.4.0
aioboto3==10.3.0
smbprotocol==1.9.0
4 changes: 2 additions & 2 deletions tests/sources/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import aioboto3
import aiofiles
import pytest
from botocore.exceptions import ClientError, HTTPClientError
from botocore.exceptions import ClientError

from connectors.filtering.validation import SyncRuleValidationResult
from connectors.protocol import Filter
Expand Down Expand Up @@ -480,7 +480,7 @@ async def test_close_with_client_session():
await source.s3_client.client()

await source.close()
with pytest.raises(HTTPClientError):
with pytest.raises(ClientError):
await source.ping()


Expand Down

0 comments on commit 7bc85bb

Please sign in to comment.