-
Notifications
You must be signed in to change notification settings - Fork 319
Troubleshooting
Scott Behrens edited this page Oct 17, 2016
·
1 revision
This page describes some common issues you may run into when using Scumblr.
- Check that sidekiq is running
- Try executing the Task via the command line
- Navigate to
/events
and look for the Run event type for your specific Task
- Check the Result or Task event pages for errors, which may indicate a bug with a partial
- You can load a result or task's metadata by typing either
/results/<id>/get_metadata.json
or/tasks/<id>/get_metadata.json
- Make sure you are checking the
Save Columns?
toggle on the edit page for your Saved Filter
This is a quick reference guide of command line cheats that may help you with troubleshooting issues with Scumblr.
To load the console, simply cd to your Scumblr root folder and run:
rails c
> res = Result.where(id: <id>).first
> res.metadata
> task = Task.where(id: <id>).first
> task.events
> task.perform_task