Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ MIGRATION_LEDGER := contracts/api/v2/migration.json
# dynamic_plugin_proxy override). Runs the whole internal/contractledger
# package so this named step enforces everything the docs attribute to it.
verify-migration-ledger:
@python3 scripts/apiv2-ledger/test_extract_consumers.py
@python3 scripts/apiv2-ledger/assign_sections.py --check $(MIGRATION_LEDGER) \
|| { echo "::error::$(MIGRATION_LEDGER) section assignments are stale; run scripts/apiv2-ledger/assign_sections.py"; exit 1; }
@go test -count=1 ./internal/contractledger/ \
Expand Down
2 changes: 1 addition & 1 deletion contracts/api/v2/fixtures/get_system_info_ok.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"server_version": "unavailable",
"api_major": 2,
"contract_digest": "774f49bd02d1b9465b2591013242eeb2aa41042c5303108ffc3ab39fd27c64eb",
"contract_digest": "c0b75587b58389a1204620593d30869d0a2adb805287d97888167bce1cb220a9",
"links": {
"openapi": "/api/v2/openapi.json",
"capabilities": "/api/v2/capabilities"
Expand Down
4 changes: 2 additions & 2 deletions contracts/api/v2/fixtures/list_household_sessions_ok.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"episode_name": "Pilot",
"season_number": 1,
"episode_number": 3,
"poster_url": "/api/v1/images/poster/42",
"poster_url": "https://media.example/poster-42.jpg",
"play_method": "transcode",
"reporting_node": "node-3",
"node_display_name": "Basement",
Expand Down Expand Up @@ -81,7 +81,7 @@
"episode_name": "",
"season_number": null,
"episode_number": null,
"poster_url": "/api/v1/images/poster/7",
"poster_url": "https://media.example/poster-7.jpg",
"play_method": "direct",
"reporting_node": "api",
"node_display_name": "",
Expand Down
Loading