Skip to content

Commit

Permalink
Fix few missed issues with the reddwarf -> trove rename
Browse files Browse the repository at this point in the history
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
  • Loading branch information
SlickNik committed Jun 25, 2013
1 parent 8125630 commit 0a680d9
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 18 deletions.
4 changes: 2 additions & 2 deletions bin/trove-api-os-database
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion bin/trove-cli
Expand Up @@ -15,7 +15,7 @@
# under the License.

"""
Reddwarf Command line tool
Trove Command line tool
"""

import json
Expand Down
4 changes: 0 additions & 4 deletions next_steps.txt

This file was deleted.

Expand Up @@ -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"
Expand Down
File renamed without changes.
Expand Up @@ -14,7 +14,7 @@

import testtools

from reddwarf.common.wsgi import Router, Fault
from trove.common.wsgi import Router, Fault

from routes import Mapper

Expand Down
2 changes: 1 addition & 1 deletion trove/tests/util/__init__.py
Expand Up @@ -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 = {
Expand Down
4 changes: 2 additions & 2 deletions trove/version.py
Expand Up @@ -22,8 +22,8 @@
'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

Expand Down

0 comments on commit 0a680d9

Please sign in to comment.