Skip to content
This repository has been archived by the owner on May 11, 2022. It is now read-only.

Commit

Permalink
Fix copypasta of workflow status indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed Jun 6, 2019
1 parent 117a624 commit 71d1a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dor/indexers/workflow_indexer.rb
Expand Up @@ -45,7 +45,7 @@ def index_process(solr_doc, wf_name, process)
index_error_message(solr_doc, wf_name, process)

# workflow name, process status then process name
solr_doc.add_wps("#{wf_name}:#{process.status}", "#{wf_name}:#{process.status}:#{process.name}")
solr_doc.add_wsp("#{wf_name}:#{process.status}", "#{wf_name}:#{process.status}:#{process.name}")

# workflow name, process name then process status
solr_doc.add_wps("#{wf_name}:#{process.name}", "#{wf_name}:#{process.name}:#{process.status}")
Expand Down

0 comments on commit 71d1a1f

Please sign in to comment.