Skip to content

Commit

Permalink
Merge pull request #20 from IATI/develop
Browse files Browse the repository at this point in the history
feat: add publisher id to minimal index
  • Loading branch information
simon-20 authored Sep 25, 2024
2 parents b45b3ab + 8c3b3fe commit 3fad002
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
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

0 comments on commit 3fad002

Please sign in to comment.