core[patch]: Update error message in indexing code for unreachable code assertion (#28712)

Minor update for error message that should never be triggered
This commit is contained in:
Eugene Yurtsev 2024-12-13 15:21:14 -05:00 committed by GitHub
parent da28cf1f54
commit ce90b25313
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -410,7 +410,10 @@ def index(
# here due to a check that's happening above, so we check again.
for source_id in source_ids:
if source_id is None:
msg = "Source ids cannot be None here."
msg = (
"source_id cannot be None at this point. "
"Reached unreachable code."
)
raise AssertionError(msg)
_source_ids = cast(Sequence[str], source_ids)
@ -670,7 +673,10 @@ async def aindex(
# here due to a check that's happening above, so we check again.
for source_id in source_ids:
if source_id is None:
msg = "Source ids cannot be None here."
msg = (
"source_id cannot be None at this point. "
"Reached unreachable code."
)
raise AssertionError(msg)
_source_ids = cast(Sequence[str], source_ids)