Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add publisher id to minimal index #20

Merged
merged 4 commits into from
Sep 25, 2024
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
9 changes: 6 additions & 3 deletions azure-provision/azure-create-resources.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,13 @@ echo
echo "(Using subscription: $SUBSCRIPTION_ID)"
echo
echo
echo "**NOTE:** Before continuing you should ensure that there is a CNAME record created in Cloudflare"
echo " for subdomain $SUBDOMAIN on iatistandard.org pointing to "
echo " $HOST_FOR_CLOUDFLARE"
echo "**NOTE 1:** Before continuing you should ensure that there is a CNAME record created in Cloudflare"
echo " for subdomain $SUBDOMAIN on iatistandard.org pointing to "
echo " $HOST_FOR_CLOUDFLARE"
echo
echo "**NOTE 2:** It is not (yet) safe to re-run this script for an instance which already exists. It will"
echo " fail at the point of database creation, because of how AZ handles creation of Postgres "
echo " servers."
echo

read -p "Do you want to continue? ([y]es or [n]o) " -n 1 -r
Expand Down
1 change: 1 addition & 0 deletions src/bulk_data_service/dataset_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ def get_minimal_index_fields(context: dict) -> list[str]:
return [
"id",
"name",
"publisher_id",
"publisher_name",
"source_url",
"hash",
Expand Down