Changes between Initial Version and Version 1 of Ticket #34542


Ignore:
Timestamp:
May 5, 2023, 8:37:08 AM (12 months ago)
Author:
Lantizia
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34542 – Description

    initial v1  
    2121a) don't set the email field either through an argument or an environment variable... it'll still complain it is needed
    2222b) set the email field via a variable as just 'DJANGO_SUPERUSER_EMAIL=' (i.e. setting the variable to null)... it still complains it is needed
    23 c) set the email field via an argument of '--email ""' (i.e. double quotes) or '--email ''' (i.e. double single quotes) or even '--email \ ' (i.e. passing a single space)... it still complains it is needed
     23c) set the email field via an argument of --email '' (i.e. double quotes) or --email "" (i.e. double single quotes) or even --email \ (i.e. passing a single space)... it still complains it is needed
    2424
    2525So it seems to be that... as least **non-interactively** it is doing what it is supposed to... and making the 'required' field of 'email' non-optional.  But **interactively** it is failing to do this.
Back to Top