Comment 3 for bug 1453186

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to devstack (master)

Reviewed: https://review.openstack.org/181465
Committed: https://git.openstack.org/cgit/openstack-dev/devstack/commit/?id=ad0a518ca92f86a9f1361d717413f8d1d65d2994
Submitter: Jenkins
Branch: master

commit ad0a518ca92f86a9f1361d717413f8d1d65d2994
Author: Accela Zhao <email address hidden>
Date: Fri May 8 23:55:31 2015 +0800

    Use an actual existing nova scheduler in README.md

    The Multi-Node Setup guide in README.md

        https://github.com/openstack-dev/devstack/tree/master#multi-node-setup

    guides users to use

        SCHEDULER=nova.scheduler.simple.SimpleScheduler

    where the SimpleScheduler doesn't actually exist in nova. Even
    though this is just an example, it is misleading enough for a
    beginner to put SimpleScheduler into local.conf. The resulting
    error message where n-sch fails to start

        ImportError: No module named simple

    Isn't intuitive enough and may takes the beginner long time to
    locate what's wrong.

    This patch replaces SimpleScheduler with a real existing
    FilterScheduler in nova.

    Change-Id: I14a2a5c0604ce08a498accfc3a795c1c9aa3e642
    Closes-bug: #1453186