Skip to content

Commit 43e693d

Browse files
committed
fix: resolve pr review comments
Signed-off-by: Yeganathan S <63534555+skwowet@users.noreply.github.com>
1 parent 418047f commit 43e693d

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

services/apps/git_integration/src/crowdgit/services/affiliation/affiliation_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ async def process_affiliations(
966966
raise AffiliationFileNotFoundError(ai_cost=ai_cost)
967967

968968
file_path_on_disk = os.path.join(batch_info.repo_path, latest_file_path)
969-
file_size_bytes = os.path.getsize(file_path_on_disk)
969+
file_size_bytes = await aiofiles.os.path.getsize(file_path_on_disk)
970970
# Too big for llm — mark unusable and move on.
971971
if file_size_bytes > self.MAX_FILE_SIZE_BYTES:
972972
# Steady state: already gave up on this file; getsize is enough.

services/libs/test-kit/src/factories/member.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)