Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
ó
x“EYc@sùddlmZddlmZejddeddddd	d
ddƒejd
ddd	eddƒejdd	dddddddƒejddddedejdddƒejdddƒejdddƒgƒejddeddƒejdd	ddd ƒejd!d	d"dejd#ddƒejd#ddƒejd!ddƒgdd$ƒejd%d	d&dejd'ddƒejd'ddƒgdd(ƒejd)d	d*dejd+ddƒejd+ddƒgdd,ƒejd-d	d.dejd/ddƒejd/ddƒgdd0ƒejd1d	d.dejd2ddƒejd3ddƒgdd4ƒejd5d	d6dejd7ddƒejd8ddƒgdd9ƒejd:d	d;d<d;d=d>dejd?ddƒgdd@ƒejdAd	e	dejdBddƒgddCƒejdDdejdEddƒgddFƒejdGd	e	ddHƒejdId	d&ddJƒejdKd	eddLƒejdMd	d.ddNƒejdOd	dPddQƒgZ
ejddRƒdUdUdUdUdUdS„ƒZ
dT„ZdUS(Viÿÿÿÿ(tremovals(tcfgt	sqlite_dbtdeprecated_for_removaltdeprecated_reasonsPShould use config option connection or slave_connection to connect the database.tdeprecated_grouptDEFAULTtdefaultsoslo.sqlitethelps!The file name to use with SQLite.tsqlite_synchronouss&If True, SQLite uses synchronous mode.tbackendt
sqlalchemytdeprecated_namet
db_backends%The back end to use for the database.t
connectionsCThe SQLAlchemy connection string to use to connect to the database.tsecrettdeprecated_optstsql_connectiontgrouptDATABASEtsqltslave_connectionsIThe SQLAlchemy connection string to use to connect to the slave database.tmysql_sql_modetTRADITIONALsÞThe SQL mode to be used for MySQL sessions. This option, including the default, overrides any server-set SQL mode. To use whatever SQL mode is set by the server configuration, set this to no value. Example: mysql_sql_mode=tidle_timeoutitsql_idle_timeouts/Timeout before idle SQL connections are reaped.t
min_pool_sizeitsql_min_pool_sizes9Minimum number of SQL connections to keep open in a pool.t
max_pool_sizeitsql_max_pool_sizesbMaximum number of SQL connections to keep open in a pool. Setting a value of 0 indicates no limit.tmax_retriesi
tsql_max_retriesskMaximum number of database connection retries during startup. Set to -1 to specify an infinite retry count.tretry_intervaltsql_retry_intervaltreconnect_intervals5Interval between retries of opening a SQL connection.tmax_overflowi2tsql_max_overflowtsqlalchemy_max_overflows8If set, use this value for max_overflow with SQLAlchemy.tconnection_debugitmintmaxidtsql_connection_debugs?Verbosity of SQL debugging information: 0=None, 100=Everything.tconnection_tracetsql_connection_traces2Add Python stack traces to SQL as comment strings.tpool_timeouttsqlalchemy_pool_timeouts8If set, use this value for pool_timeout with SQLAlchemy.tuse_db_reconnectsEEnable the experimental use of database reconnect on connection lost.tdb_retry_intervals2Seconds between retries of a database transaction.tdb_inc_retry_intervalsdIf True, increases the interval between retries of a database operation up to db_max_retry_interval.tdb_max_retry_intervals]If db_inc_retry_interval is set, the maximum seconds between retries of a database operation.tdb_max_retriesisƒMaximum retries in case of connection error or deadlock error before error is raised. Set to -1 to specify an infinite retry count.sQConfig option sqlite_db is deprecated for removal,please use option `connection`.cCsÐ|jtddƒ|dk	r8|jd|ddƒn|dk	r]|jd|ddƒn|dk	r‚|jd|ddƒn|dk	r§|jd|ddƒn|dk	rÌ|jd|ddƒndS(	s3Set defaults for configuration variables.

    Overrides default options values.

    :param conf: Config instance specified to set default options in it. Using
     of instances instead of a global config object prevents conflicts between
     options declaration.
    :type conf: oslo.config.cfg.ConfigOpts instance.

    :keyword connection: SQL connection string.
        Valid SQLite URL forms are:
        * sqlite:///:memory: (or, sqlite://)
        * sqlite:///relative/path/to/file.db
        * sqlite:////absolute/path/to/file.db
    :type connection: str

    :keyword sqlite_db: path to SQLite database file.
    :type sqlite_db: str

    :keyword max_pool_size: maximum connections pool size. The size of the pool
     to be maintained, defaults to 5. This is the largest number of connections
     that will be kept persistently in the pool. Note that the pool begins with
     no connections; once this number of connections is requested, that number
     of connections will remain.
    :type max_pool_size: int
    :default max_pool_size: 5

    :keyword max_overflow: The maximum overflow size of the pool. When the
     number of checked-out connections reaches the size set in pool_size,
     additional connections will be returned up to this limit. When those
     additional connections are returned to the pool, they are disconnected and
     discarded. It follows then that the total number of simultaneous
     connections the pool will allow is pool_size + max_overflow, and the total
     number of "sleeping" connections the pool will allow is pool_size.
     max_overflow can be set to -1 to indicate no overflow limit; no limit will
     be placed on the total number of concurrent connections. Defaults to 10,
     will be used if value of the parameter in `None`.
    :type max_overflow: int
    :default max_overflow: None

    :keyword pool_timeout: The number of seconds to wait before giving up on
     returning a connection. Defaults to 30, will be used if value of the
     parameter is `None`.
    :type pool_timeout: int
    :default pool_timeout: None
    RtdatabaseRRRR#R,N(t
register_optst
database_optstNonetset_default(tconfRRRR#R,((sD/home/tvault/.virtenv/lib/python2.7/site-packages/oslo_db/options.pytset_defaults’s5cCs
dtfgS(soReturns a list of oslo.config options available in the library.

    The returned list includes all oslo.config options which may be registered
    at runtime by the library.

    Each element of the list is a tuple. The first element is the name of the
    group under which the list of elements in the second element will be
    registered. A group name of None corresponds to the [DEFAULT] group in
    config files.

    The purpose of this is to allow tools like the Oslo sample config file
    generator to discover the options exposed to users by this library.

    :returns: a list of (group_name, opts) tuples
    R3(R5(((sD/home/tvault/.virtenv/lib/python2.7/site-packages/oslo_db/options.pyt	list_optsÕsN(t
debtcollectorRtoslo_configRtStrOpttTruetBoolOptt
DeprecatedOpttIntOpttFalseR5t
removed_kwargR6R9R:(((sD/home/tvault/.virtenv/lib/python2.7/site-packages/oslo_db/options.pyt<module>
sÞ	>