Changes between Initial Version and Version 1 of Ticket #34542
- Timestamp:
- May 5, 2023, 8:37:08 AM (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34542 – Description
initial v1 21 21 a) don't set the email field either through an argument or an environment variable... it'll still complain it is needed 22 22 b) 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 needed23 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 24 24 25 25 So 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.