conf.py 323 B

1234567891011121314
  1. # Copyright 2020 Cloudbase Solutions Srl
  2. # All Rights Reserved.
  3. from oslo_config import cfg
  4. def init_common_opts():
  5. opts = [
  6. cfg.IntOpt('default_requests_timeout',
  7. default=60,
  8. help='Number of seconds for HTTP request timeouts.'),
  9. ]
  10. cfg.CONF.register_opts(opts)