summaryrefslogtreecommitdiff
path: root/releasenotes/notes/positional-arguments-are-required-22ddca72e6f523bf.yaml
blob: 6e7914c7902e1e4c5f94edc3e57a205e38cde0e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
upgrade:
  - |
    Positional options are now required by default, to match argparse's default
    behavior. To revert this behavior (and maintain optional positional
    arguments), you need to explicitly specify ``positional=True,
    required=False`` as part of the options definition.
fixes:
  - |
    On the command line, oslo.config now returns command usage information from
    argparse (instead of dumping a backtrace) when required arguments are
    missing.