fix: retain completed relation verification results - #635
Closed
seonghobae wants to merge 20 commits into
Closed
Conversation
…ing-pool-release # Conflicts: # docs/adr/README.md # docs/operability/http-concurrency-evidence.md # docs/product-technical-gap-baseline.md # scripts/k6_http_e2e.js
…lease' into fix/global-ask-embedding-pool-release # Conflicts: # backend/app/post_chat_ingestion.py
…lease' into fix/global-ask-embedding-pool-release # Conflicts: # backend/app/post_chat_ingestion.py # tests/test_global_ask_sources.py
…lease' into fix/global-ask-embedding-pool-release
…lease' into fix/global-ask-embedding-pool-release
|
Warning Review limit reachedNext included review available in 15 minutes. View limit detailsLimit details: You’ve used the included review currently available. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. Review configuration: ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (24)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
seonghobae
enabled auto-merge (squash)
August 25, 2026 13:38
Contributor
Author
auto-merge was automatically disabled
August 25, 2026 13:39
Pull request was closed
seonghobae
enabled auto-merge (squash)
August 25, 2026 13:49
Contributor
Author
auto-merge was automatically disabled
August 25, 2026 14:05
Pull request was closed
Contributor
Author
Comment on lines
+535
to
+546
| posts = await conn.fetch( | ||
| "select post_id, post_title, voc_type_code, visibility_code, " | ||
| "corporate_entity_id, process_unit_id, thread_group_key, created_at " | ||
| "from source_post where " | ||
| f"{SOURCE_POST_ELIGIBILITY_SQL.format(alias='source_post')} and " | ||
| "(visibility_code = 'public' or (corporate_entity_id::text = any($1::text[]) " | ||
| "and (cardinality($2::text[]) = 0 or process_unit_id::text = any($2::text[])))) " | ||
| "order by created_at desc, post_id desc limit $3", | ||
| list(corporate_entity_ids), | ||
| list(process_unit_ids), | ||
| limit + 1, | ||
| ) |
Comment on lines
+535
to
+546
| posts = await conn.fetch( | ||
| "select post_id, post_title, voc_type_code, visibility_code, " | ||
| "corporate_entity_id, process_unit_id, thread_group_key, created_at " | ||
| "from source_post where " | ||
| f"{SOURCE_POST_ELIGIBILITY_SQL.format(alias='source_post')} and " | ||
| "(visibility_code = 'public' or (corporate_entity_id::text = any($1::text[]) " | ||
| "and (cardinality($2::text[]) = 0 or process_unit_id::text = any($2::text[])))) " | ||
| "order by created_at desc, post_id desc limit $3", | ||
| list(corporate_entity_ids), | ||
| list(process_unit_ids), | ||
| limit + 1, | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Verification
uv run --extra dev pytest -q tests/test_relation_verification_internal.pygit diff origin/main...HEAD --checkFollow-up to the actionable review finding on #633.