
Cinder had config options to customize the RPC topics on which the scheduler, volume and backup nodes listen. But this feature has been dysfunctional for quite a long time. This commit removed this feature. For more details: Refer the bug comments. DocImpact Change-Id: Ie76f070fe9a1222c209e8defd0d04fa7a7931b14 Closes-Bug: #1301888
27 lines
946 B
Python
27 lines
946 B
Python
# Copyright 2016 Red Hat, Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
|
|
# The maximum value a signed INT type may have
|
|
DB_MAX_INT = 0x7FFFFFFF
|
|
|
|
# The cinder services binaries and topics' names
|
|
SCHEDULER_BINARY = "cinder-scheduler"
|
|
VOLUME_BINARY = "cinder-volume"
|
|
BACKUP_BINARY = "cinder-backup"
|
|
SCHEDULER_TOPIC = SCHEDULER_BINARY
|
|
VOLUME_TOPIC = VOLUME_BINARY
|
|
BACKUP_TOPIC = BACKUP_BINARY
|