Procházet zdrojové kódy

Make rest api timeout configureable.

It is important to be able to increase timeouts on api when running
orchestrate tasks via pepper.

Change-Id: I3ff0988bfec3ec4715348c5de15247fe0b075443
pull/73/head
Dzmitry Stremkouski před 6 roky
rodič
revize
58a0dc667b
2 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. +3
    -0
      salt/files/_api.conf
  2. +1
    -0
      tests/pillar/master_api.sls

+ 3
- 0
salt/files/_api.conf Zobrazit soubor

@@ -22,6 +22,9 @@ rest_cherrypy:
disable_ssl: True
{%- endif %}
expire_responses: {{ api.get('expire_responses', False) }}
{%- if api.rest_timeout is defined %}
rest-timeout: {{ api.rest_timeout }}
{%- endif %}
{%- if api.get('debug', False) %}
debug: True
{%- endif %}

+ 1
- 0
tests/pillar/master_api.sls Zobrazit soubor

@@ -20,6 +20,7 @@ salt:
formula: {}
api:
enabled: true
rest_timeout: 7200
ssl:
engine: salt
bind:

Načítá se…
Zrušit
Uložit