Limit sync to one run/day, prevent overlap, and migrate batching to /v1/movies + /v1/shows#22
Merged
AbandonedCart merged 2 commits intomainfrom Apr 21, 2026
Conversation
Agent-Logs-Url: https://github.com/intro-skipper/skipme.db-plugin/sessions/396cf0c1-f4d4-401b-8358-98e8ffa145a1 Co-authored-by: AbandonedCart <1173913+AbandonedCart@users.noreply.github.com>
Agent-Logs-Url: https://github.com/intro-skipper/skipme.db-plugin/sessions/396cf0c1-f4d4-401b-8358-98e8ffa145a1 Co-authored-by: AbandonedCart <1173913+AbandonedCart@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
AbandonedCart
April 21, 2026 12:56
View session
Contributor
Code Review SummaryStatus: No Issues Found | Recommendation: Merge OverviewThe PR introduces rate limiting, overlap prevention, and batch API migration to the SkipMe.db sync pipeline. The changes are well-structured and follow existing codebase patterns. Design Pattern Observations
Architecture
.NET Best Practices
Key Changes Reviewed
Potential Improvement (Not a Bug)
Files Reviewed (7 files)
Reviewed by minimax-m2.5-20260211 · 610,952 tokens |
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.
This updates the sync pipeline to enforce one successful run per 24 hours and prevent concurrent executions. It also migrates ingestion from legacy per-item endpoints to batched
POST /v1/moviesandPOST /v1/shows, including 100MB request-size handling.Rate limiting and overlap control
Metadatatable) and daily run suppression.API migration to new batch endpoints
GetByMoviesBatchAsync(...)→/v1/moviesGetByShowsBatchAsync(...)→/v1/showsMovieLookupRequestShowLookupRequestBatch construction and size enforcement
Sync task refactor
/v1/movies/v1/shows