-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update ingest command #163
Conversation
@dkinzer I tried doing what you did in cob_az_index, but this isn't quite working. It starts running, but then I get this error: Can you help figure out what else needs to happen? |
exe/cob_web_index
Outdated
@@ -33,12 +33,13 @@ class App | |||
end | |||
|
|||
if options["use-fixtures"] | |||
CobWebIndex::CLI.ingest_fixtures(opts) | |||
opts |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think your issue may be coming from this line
exe/cob_web_index
Outdated
else | ||
CobWebIndex::CLI.ingest(opts.merge(ingest_path: args[0], delete_collection: true)) | ||
opts.merge(ingest_path: args[0], delete_collection: true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably be opts.merge!
Fix options not passed for indexing.
No description provided.