Skip to content

Troubleshooting

Scott Behrens edited this page Oct 17, 2016 · 1 revision

Table of Contents

Overview

This page describes some common issues you may run into when using Scumblr.

Common Issues

Task Doesn't Seem To Execute

  • 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

Individual Results or Task Views Seem to be Missing Data or Partials

  • 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

My Saved Result Filters Are Not Updating Columns

  • Make sure you are checking the Save Columns? toggle on the edit page for your Saved Filter

Console Cheat Sheet

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

Results

> res = Result.where(id: <id>).first

Retrieve Result Metadata

> res.metadata

Tasks

> task = Task.where(id: <id>).first

Retrieve Task Events

> task.events

Execute a Task

> task.perform_task
Clone this wiki locally