Problem/Motivation

In the redis info file, we have configure: redis.admin_display, but this route is not found.

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

Issue fork redis-3352651

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

nassaz created an issue. See original summary.

_pratik_’s picture

The issue here is , route needs to be defined in routing.yml file.
Something like this.

redis.admin_display:
  path: 'redis/demo/page'
  defaults:
    _form: '\Drupal\redis\Form\RedisDemoForm'
    _title: 'Redis configuration'
  requirements:
    _access: 'TRUE'

grimreaper made their first commit to this issue’s fork.

grimreaper’s picture

Assigned: Unassigned » grimreaper

grimreaper’s picture

Assigned: grimreaper » Unassigned
Status: Active » Needs review

It was the .info.yml having a non-existing route in its configure key.

Don't know why I only see a error on one of my project now, as it as not been changed for many years.

berdir made their first commit to this issue’s fork.

  • berdir committed 808b8ec0 on 8.x-1.x authored by grimreaper
    Issue #3352651 by grimreaper, _pratik_: redis.admin_display route not...
berdir’s picture

Status: Needs review » Fixed

Definitely shouldn't be an invalid route. Not sure if we should have that at all, there isn't really anything to configure there, but doesn't hurt I guess.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.