digdag icon indicating copy to clipboard operation
digdag copied to clipboard

Some system configuration parameters are missing document.

Open hiroyuki-sato opened this issue 6 years ago • 1 comments

Some system configuration parameters are missing document.

  • http> operator
    • config.http.allow_user_proxy
    • config.http.max_redirects
    • config.http.max_stored_response_content_size
    • config.http.proxy.enabled
    • config.http.proxy.host
    • config.http.proxy.port
    • config.http.proxy.tls
    • config.http.user_agent
  • mail> operator Release 0.7.1 / Example Usage
    • config.mail.debug
    • config.mail.from
    • config.mail.host
    • config.mail.password
    • config.mail.port
    • config.mail.ssl
    • config.mail.subject
    • config.mail.tls
    • config.mail.username
  • td> operator
    • config.td.default_endpoint Release 0.9.13
    • config.td.max_poll_interval
    • config.td.max_retry_interval
    • config.td.min_poll_interval
    • config.td.min_retry_interval
  • jdbc? Source

I roughly checked with the following command.

egrep -o -hr 'systemConfig.get.*\([^,\)]*' . | awk -F\( '{ print $2 }' | tr -d '"' | sort -u

hiroyuki-sato avatar Feb 07 '19 10:02 hiroyuki-sato