Skip to content

Commit

Permalink
Merge pull request #488 from tulibraries/fix-deletes-bug
Browse files Browse the repository at this point in the history
Fix deletes so they work with URLs
  • Loading branch information
ebtoner authored Jan 30, 2023
2 parents 4fbf328 + 70208c3 commit 81e5a44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exe/cob_index
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class App

c.desc "Delete documents from solr"
c.action do |global_options, options, args|
xml = open(ARGV[0]).read
xml = URI.open(ARGV[0]).read

opts = {}
opts.merge!(commit: options[:commit], xml: xml, suppress: options[:suppress])
Expand Down

0 comments on commit 81e5a44

Please sign in to comment.