Fix few missed issues with the reddwarf -> trove rename

There were a few files that were touched after the reddwarf->trove
rename that were still referencing "reddwarf". Changed these
references to "trove".

Fixed bug: 1194636

Change-Id: I7c7b014dee3b3a540baa84ad491812e17a8235ee
This commit is contained in:
Nikhil Manchanda 2013-06-25 13:27:09 -07:00
parent 8125630f44
commit 0a680d91b3
8 changed files with 14 additions and 18 deletions

View File

@ -43,12 +43,12 @@ SERVICE_NAME = "troveapi_database"
trove_opts = [
cfg.StrOpt('trove_api_paste_config',
default='trove-api-paste.ini',
help='Reddwarf API paste config'),
help='Trove API paste config'),
# port magic in service.WSGIService the name of the app has to be the same
# as the name of the service
cfg.IntOpt('%s_listen_port' % SERVICE_NAME,
default=8779,
help='Reddwarf API default port'),
help='Trove API default port'),
cfg.MultiStrOpt('trove_api_extension',
default=[
'trove.api.database.contrib.standard_extensions'

View File

@ -15,7 +15,7 @@
# under the License.
"""
Reddwarf Command line tool
Trove Command line tool
"""
import json

View File

@ -1,4 +0,0 @@
update impl_qpid so it works with reddwarf
fix the defaults problem w/ the flagfile... its not overriding
better implementation of a python guest agent
initial mysql hardening

View File

@ -12,15 +12,15 @@
# License for the specific language governing permissions and limitations
# under the License.
import reddwarf.guestagent.strategies.backup.base as backupBase
import reddwarf.guestagent.strategies.restore.base as restoreBase
import trove.guestagent.strategies.backup.base as backupBase
import trove.guestagent.strategies.restore.base as restoreBase
import testtools
from reddwarf.common import utils
from trove.common import utils
BACKUP_XTRA_CLS = "reddwarf.guestagent.strategies.backup.impl.InnoBackupEx"
RESTORE_XTRA_CLS = "reddwarf.guestagent.strategies.restore.impl.InnoBackupEx"
BACKUP_SQLDUMP_CLS = "reddwarf.guestagent.strategies.backup.impl.MySQLDump"
RESTORE_SQLDUMP_CLS = "reddwarf.guestagent.strategies.restore.impl.MySQLDump"
BACKUP_XTRA_CLS = "trove.guestagent.strategies.backup.impl.InnoBackupEx"
RESTORE_XTRA_CLS = "trove.guestagent.strategies.restore.impl.InnoBackupEx"
BACKUP_SQLDUMP_CLS = "trove.guestagent.strategies.backup.impl.MySQLDump"
RESTORE_SQLDUMP_CLS = "trove.guestagent.strategies.restore.impl.MySQLDump"
PIPE = " | "
ZIP = "gzip"
UNZIP = "gzip -d -c"

View File

@ -14,7 +14,7 @@
import testtools
from reddwarf.common.wsgi import Router, Fault
from trove.common.wsgi import Router, Fault
from routes import Mapper

View File

@ -97,7 +97,7 @@ def create_client(*args, **kwargs):
def create_dbaas_client(user):
"""Creates a rich client for the RedDwarf API using the test config."""
"""Creates a rich client for the Trove API using the test config."""
auth_strategy = None
kwargs = {

View File

@ -22,8 +22,8 @@ except ImportError:
'revision_id': 'LOCALREVISION',
'revno': 0}
REDDWARF_VERSION = ['2012', '1']
YEAR, COUNT = REDDWARF_VERSION
TROVE_VERSION = ['2012', '1']
YEAR, COUNT = TROVE_VERSION
FINAL = False # This becomes true at Release Candidate time