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

Up the timeout for reading the describe json file #697

Merged
merged 1 commit into from
Oct 14, 2024
Merged
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
2 changes: 1 addition & 1 deletion app/lib/describe_indexer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def rss_url_list
# Parse the rss_url, get a JSON resource url for each item, convert it to XML, and pass it to traject
def perform_indexing
rss_url_list.each do |url|
resource_json = URI.open(url).read
resource_json = URI.open(url, read_timeout: 30).read
resource_xml = prep_for_indexing(resource_json)
traject_indexer.process(resource_xml)
Rails.logger.info "Successfully imported record from #{url}."
Expand Down