Skip to content

Bugfix: message category is missing in "--help" definition of the "--connection-timeout" option

Dmitry requested to merge dmius-contimeout-option-fix into master

Description

Help message for connection-timeout option was wrong. The issue fixed.

  • the MR description has been reviewed
  • this MR contains text changes and they have been reviewed OR there are no texts changes
  • this MR contains GUI/CLI changes and they have been reviewed OR there are no GUI/CLI changes
  • this MR contains API changes and they have been reviewed OR there are no API changes

Related issue

Examples

Before

Postgres connection to the specified host
  ...
  -S,     --statement-timeout   Statement timeout for all SQL queries (default: 30 seconds)
  -t,    --connection-timeout

Proccess data options:
  -l,            --list-limit   How many items will be displayed in the lists (tables) (default: "50")
  ...

After

Postgres connection to the specified host
  ...
  -S,     --statement-timeout   Statement timeout for all SQL queries (default: 30 seconds)
  -t,    --connection-timeout   Connection timeout (both for SSH and remote Postgres connections; default: 10 seconds)

Proccess data options:
  -l,            --list-limit   How many items will be displayed in the lists (tables) (default: "50")
  ...
Edited by Nikolay Samokhvalov

Merge request reports