Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
ewdurbin committed Nov 15, 2023
2 parents cefa5f0 + 6720796 commit f7ff441
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion downloads/search_indexes.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class ReleaseIndex(indexes.SearchIndex, indexes.Indexable):
name = indexes.CharField(model_attr='name')
description = indexes.CharField()
path = indexes.CharField()
version = indexes.CharField(model_attr='version')
release_notes_url = indexes.CharField(model_attr='release_notes_url')
release_date = indexes.DateTimeField(model_attr='release_date')

Expand Down
2 changes: 1 addition & 1 deletion pydotorg/settings/heroku.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
'default': {
'ENGINE': 'haystack.backends.elasticsearch7_backend.Elasticsearch7SearchEngine',
'URL': HAYSTACK_SEARCHBOX_SSL_URL,
'INDEX_NAME': 'haystack-prod',
'INDEX_NAME': config('HAYSTACK_INDEX', default='haystack-prod'),
},
}

Expand Down

0 comments on commit f7ff441

Please sign in to comment.