merged gholts changes
This commit is contained in:
commit
e09c25be1a
2
bin/st
2
bin/st
@ -44,8 +44,6 @@ except:
|
|||||||
try:
|
try:
|
||||||
from swift.common.bufferedhttp \
|
from swift.common.bufferedhttp \
|
||||||
import BufferedHTTPConnection as HTTPConnection
|
import BufferedHTTPConnection as HTTPConnection
|
||||||
import gettext
|
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
except:
|
except:
|
||||||
from httplib import HTTPConnection
|
from httplib import HTTPConnection
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@ from urllib import quote
|
|||||||
from hashlib import md5
|
from hashlib import md5
|
||||||
import getopt
|
import getopt
|
||||||
from itertools import chain
|
from itertools import chain
|
||||||
import gettext
|
|
||||||
|
|
||||||
import simplejson
|
import simplejson
|
||||||
from eventlet.greenpool import GreenPool
|
from eventlet.greenpool import GreenPool
|
||||||
@ -325,7 +324,6 @@ class Auditor(object):
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
try:
|
try:
|
||||||
optlist, args = getopt.getopt(sys.argv[1:], 'c:r:e:d')
|
optlist, args = getopt.getopt(sys.argv[1:], 'c:r:e:d')
|
||||||
except getopt.GetoptError, err:
|
except getopt.GetoptError, err:
|
||||||
|
@ -18,13 +18,11 @@ from ConfigParser import ConfigParser
|
|||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
from os.path import basename
|
from os.path import basename
|
||||||
from sys import argv, exit
|
from sys import argv, exit
|
||||||
import gettext
|
|
||||||
|
|
||||||
from swift.common.bufferedhttp import http_connect_raw as http_connect
|
from swift.common.bufferedhttp import http_connect_raw as http_connect
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
default_conf = '/etc/swift/auth-server.conf'
|
default_conf = '/etc/swift/auth-server.conf'
|
||||||
parser = OptionParser(
|
parser = OptionParser(
|
||||||
usage='Usage: %prog [options] <account> <user> <password>')
|
usage='Usage: %prog [options] <account> <user> <password>')
|
||||||
|
@ -17,12 +17,10 @@
|
|||||||
from ConfigParser import ConfigParser
|
from ConfigParser import ConfigParser
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
from sys import argv, exit
|
from sys import argv, exit
|
||||||
import gettext
|
|
||||||
|
|
||||||
from swift.common.bufferedhttp import http_connect_raw as http_connect
|
from swift.common.bufferedhttp import http_connect_raw as http_connect
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
default_conf = '/etc/swift/auth-server.conf'
|
default_conf = '/etc/swift/auth-server.conf'
|
||||||
parser = OptionParser(usage='Usage: %prog [options]')
|
parser = OptionParser(usage='Usage: %prog [options]')
|
||||||
parser.add_option('-c', '--conf', dest='conf', default=default_conf,
|
parser.add_option('-c', '--conf', dest='conf', default=default_conf,
|
||||||
|
@ -16,13 +16,11 @@
|
|||||||
|
|
||||||
from os.path import basename
|
from os.path import basename
|
||||||
from sys import argv, exit
|
from sys import argv, exit
|
||||||
import gettext
|
|
||||||
|
|
||||||
from swift.common.db import get_db_connection
|
from swift.common.db import get_db_connection
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
app = basename(argv[0])
|
app = basename(argv[0])
|
||||||
if len(argv) != 3:
|
if len(argv) != 3:
|
||||||
exit('''
|
exit('''
|
||||||
|
@ -20,7 +20,6 @@ import sys
|
|||||||
import signal
|
import signal
|
||||||
import uuid
|
import uuid
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
import gettext
|
|
||||||
|
|
||||||
from swift.common.bench import BenchController
|
from swift.common.bench import BenchController
|
||||||
from swift.common.utils import readconf, NamedLogger
|
from swift.common.utils import readconf, NamedLogger
|
||||||
@ -56,7 +55,6 @@ SAIO_DEFAULTS = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
usage = "usage: %prog [OPTIONS] [CONF_FILE]"
|
usage = "usage: %prog [OPTIONS] [CONF_FILE]"
|
||||||
usage += """\n\nConf file with SAIO defaults:
|
usage += """\n\nConf file with SAIO defaults:
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@ import re
|
|||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
from ConfigParser import ConfigParser
|
from ConfigParser import ConfigParser
|
||||||
import gettext
|
|
||||||
|
|
||||||
from swift.common.utils import get_logger
|
from swift.common.utils import get_logger
|
||||||
|
|
||||||
@ -87,7 +86,6 @@ def comment_fstab(mount_point):
|
|||||||
os.rename('/etc/fstab.new', '/etc/fstab')
|
os.rename('/etc/fstab.new', '/etc/fstab')
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
c = ConfigParser()
|
c = ConfigParser()
|
||||||
try:
|
try:
|
||||||
conf_path = sys.argv[1]
|
conf_path = sys.argv[1]
|
||||||
|
@ -16,14 +16,11 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
import urllib
|
import urllib
|
||||||
import gettext
|
|
||||||
|
|
||||||
from swift.common.ring import Ring
|
from swift.common.ring import Ring
|
||||||
from swift.common.utils import hash_path
|
from swift.common.utils import hash_path
|
||||||
|
|
||||||
|
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
|
|
||||||
if len(sys.argv) < 3 or len(sys.argv) > 5:
|
if len(sys.argv) < 3 or len(sys.argv) > 5:
|
||||||
print 'Usage: %s <ring.gz> <account> [<container>] [<object>]' \
|
print 'Usage: %s <ring.gz> <account> [<container>] [<object>]' \
|
||||||
% sys.argv[0]
|
% sys.argv[0]
|
||||||
|
@ -15,14 +15,12 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import gettext
|
|
||||||
|
|
||||||
from swift.stats.log_uploader import LogUploader
|
from swift.stats.log_uploader import LogUploader
|
||||||
from swift.common.utils import parse_options
|
from swift.common.utils import parse_options
|
||||||
from swift.common import utils
|
from swift.common import utils
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
conf_file, options = parse_options(usage="Usage: %prog CONFIG_FILE PLUGIN")
|
conf_file, options = parse_options(usage="Usage: %prog CONFIG_FILE PLUGIN")
|
||||||
try:
|
try:
|
||||||
plugin = options['extra_args'][0]
|
plugin = options['extra_args'][0]
|
||||||
|
@ -18,14 +18,12 @@ import sys
|
|||||||
import cPickle as pickle
|
import cPickle as pickle
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from hashlib import md5
|
from hashlib import md5
|
||||||
import gettext
|
|
||||||
|
|
||||||
from swift.common.ring import Ring
|
from swift.common.ring import Ring
|
||||||
from swift.obj.server import read_metadata
|
from swift.obj.server import read_metadata
|
||||||
from swift.common.utils import hash_path
|
from swift.common.utils import hash_path
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
if len(sys.argv) <= 1:
|
if len(sys.argv) <= 1:
|
||||||
print "Usage: %s OBJECT_FILE" % sys.argv[0]
|
print "Usage: %s OBJECT_FILE" % sys.argv[0]
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
@ -21,7 +21,6 @@ from os import mkdir
|
|||||||
from os.path import basename, dirname, exists, join as pathjoin
|
from os.path import basename, dirname, exists, join as pathjoin
|
||||||
from sys import argv, exit
|
from sys import argv, exit
|
||||||
from time import time
|
from time import time
|
||||||
import gettext
|
|
||||||
|
|
||||||
from swift.common.ring import RingBuilder
|
from swift.common.ring import RingBuilder
|
||||||
|
|
||||||
@ -175,7 +174,6 @@ swift-ring-builder <builder_file> set_min_part_hours <hours>
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
if len(argv) < 2:
|
if len(argv) < 2:
|
||||||
print '''
|
print '''
|
||||||
swift-ring-builder %(MAJOR_VERSION)s.%(MINOR_VERSION)s
|
swift-ring-builder %(MAJOR_VERSION)s.%(MINOR_VERSION)s
|
||||||
|
@ -21,7 +21,6 @@ from optparse import OptionParser
|
|||||||
from sys import exit, argv
|
from sys import exit, argv
|
||||||
from time import time
|
from time import time
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
import gettext
|
|
||||||
|
|
||||||
from eventlet import GreenPool, patcher, sleep
|
from eventlet import GreenPool, patcher, sleep
|
||||||
from eventlet.pools import Pool
|
from eventlet.pools import Pool
|
||||||
@ -76,7 +75,6 @@ def report(success):
|
|||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
global begun, created, item_type, next_report, need_to_create, retries_done
|
global begun, created, item_type, next_report, need_to_create, retries_done
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
patcher.monkey_patch()
|
patcher.monkey_patch()
|
||||||
|
|
||||||
parser = OptionParser()
|
parser = OptionParser()
|
||||||
|
@ -23,7 +23,6 @@ from optparse import OptionParser
|
|||||||
from sys import argv, exit, stderr
|
from sys import argv, exit, stderr
|
||||||
from time import time
|
from time import time
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
import gettext
|
|
||||||
|
|
||||||
from eventlet import GreenPool, hubs, patcher, sleep, Timeout
|
from eventlet import GreenPool, hubs, patcher, sleep, Timeout
|
||||||
from eventlet.pools import Pool
|
from eventlet.pools import Pool
|
||||||
@ -747,7 +746,6 @@ def object_delete_report(coropool, connpool, options):
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
gettext.install('swift', unicode=1)
|
|
||||||
patcher.monkey_patch()
|
patcher.monkey_patch()
|
||||||
hubs.get_hub().debug_exceptions = False
|
hubs.get_hub().debug_exceptions = False
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
__version__ = '1.1.0'
|
|
||||||
import gettext
|
import gettext
|
||||||
|
|
||||||
|
|
||||||
|
__version__ = '1.1.0'
|
||||||
gettext.install('swift')
|
gettext.install('swift')
|
||||||
|
@ -23,6 +23,7 @@ from shutil import rmtree
|
|||||||
from eventlet import spawn, TimeoutError, listen
|
from eventlet import spawn, TimeoutError, listen
|
||||||
from eventlet.timeout import Timeout
|
from eventlet.timeout import Timeout
|
||||||
|
|
||||||
|
from swift.common import utils
|
||||||
from swift.container import updater as container_updater
|
from swift.container import updater as container_updater
|
||||||
from swift.container import server as container_server
|
from swift.container import server as container_server
|
||||||
from swift.common.db import ContainerBroker
|
from swift.common.db import ContainerBroker
|
||||||
@ -33,6 +34,7 @@ from swift.common.utils import normalize_timestamp
|
|||||||
class TestContainerUpdater(unittest.TestCase):
|
class TestContainerUpdater(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
utils.HASH_PATH_SUFFIX = 'endcap'
|
||||||
self.path_to_test_xfs = os.environ.get('PATH_TO_TEST_XFS')
|
self.path_to_test_xfs = os.environ.get('PATH_TO_TEST_XFS')
|
||||||
if not self.path_to_test_xfs or \
|
if not self.path_to_test_xfs or \
|
||||||
not os.path.exists(self.path_to_test_xfs):
|
not os.path.exists(self.path_to_test_xfs):
|
||||||
|
Loading…
Reference in New Issue
Block a user