Merge pull request #33 from thiagol11/release2.0
Updating SwiftOnFile version to release 2.0
This commit is contained in:
commit
cd0faa4d7b
@ -1,16 +1,13 @@
|
|||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
#
|
#
|
||||||
# Default gluster mount point to be used for object store,can be changed by
|
# Default swiftonfile mount point to be used for object server
|
||||||
# setting the following value in {account,container,object}-server.conf files.
|
# This mount point is the parent directory to the device specified
|
||||||
# It is recommended to keep this value same for all the three services but can
|
# in this swiftonfile object ring.
|
||||||
# be kept different if environment demands.
|
|
||||||
devices = /mnt/swiftonfile
|
devices = /mnt/swiftonfile
|
||||||
#
|
#
|
||||||
# Once you are confident that your startup processes will always have your
|
# You must always have the volume properly mounted *before* starting the
|
||||||
# gluster volumes properly mounted *before* the object-server workers start,
|
# SwiftOnFile object-server.
|
||||||
# you can *consider* setting this value to "false" to reduce the per-request
|
mount_check = false
|
||||||
# overhead it can incur.
|
|
||||||
mount_check = true
|
|
||||||
bind_port = 6050
|
bind_port = 6050
|
||||||
#
|
#
|
||||||
# Maximum number of clients one worker can process simultaneously (it will
|
# Maximum number of clients one worker can process simultaneously (it will
|
||||||
@ -31,7 +28,7 @@ pipeline = object-server
|
|||||||
|
|
||||||
[app:object-server]
|
[app:object-server]
|
||||||
use = egg:swiftonfile#object
|
use = egg:swiftonfile#object
|
||||||
user = root
|
user = <your-user-name>
|
||||||
log_facility = LOG_LOCAL2
|
log_facility = LOG_LOCAL2
|
||||||
log_level = WARN
|
log_level = WARN
|
||||||
# For performance, after ensuring things are running in a stable manner, you
|
# For performance, after ensuring things are running in a stable manner, you
|
||||||
|
@ -45,6 +45,6 @@ class PkgInfo(object):
|
|||||||
###
|
###
|
||||||
### Change the Package version here
|
### Change the Package version here
|
||||||
###
|
###
|
||||||
_pkginfo = PkgInfo('1.13.1', '0', 'swiftonfile', False)
|
_pkginfo = PkgInfo('2.0.0', '0', 'swiftonfile', False)
|
||||||
__version__ = _pkginfo.pretty_version
|
__version__ = _pkginfo.pretty_version
|
||||||
__canonical_version__ = _pkginfo.canonical_version
|
__canonical_version__ = _pkginfo.canonical_version
|
||||||
|
2
tox.ini
2
tox.ini
@ -20,7 +20,7 @@ setenv = VIRTUAL_ENV={envdir}
|
|||||||
deps =
|
deps =
|
||||||
# GitHub's .zip URL won't work! pip supports installing from git repos.
|
# GitHub's .zip URL won't work! pip supports installing from git repos.
|
||||||
# https://pip.pypa.io/en/latest/reference/pip_install.html#git
|
# https://pip.pypa.io/en/latest/reference/pip_install.html#git
|
||||||
git+https://github.com/openstack/swift.git@2.0.0.rc1
|
git+https://github.com/openstack/swift.git@2.0.0
|
||||||
-r{toxinidir}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
-r{toxinidir}/test-requirements.txt
|
-r{toxinidir}/test-requirements.txt
|
||||||
changedir = {toxinidir}/test/unit
|
changedir = {toxinidir}/test/unit
|
||||||
|
Loading…
Reference in New Issue
Block a user