Roundup Tracker - Issues

Message6508

Author ber
Recipients ber, rouilj, tekberg, tmikk
Date 2019-06-03.14:11:47
Message-id <1559571107.69.0.331863476132.issue2551029@roundup.psfhosted.org>
In-reply-to
Giving changeset:   5760:f0ca4daf6a18
a test run, like outlined in msg6388:

Result:
roundup-admin -i test-tracker initialise 1234
barfs with 

[..]
python3.5/site-packages/roundup/configuration.py", line 197, in get
    raise OptionUnsetError(self)
roundup.configuration.OptionUnsetError: MAIL_DOMAIN is not set and has
no default

which seems okay, I've now added the setting
vim  test-tracker/config.ini
domain = sometest.intevation.de"
web = 'http://localhost:8080/support/'

env LANG=C roundup-admin -i test-tracker initialise 1234
WARNING: The database is already initialised!
If you re-initialise it, you will lose all the data!
Erase it? Y/N:

This is surprising because the last call gave me a traceback,
but it still initialized the database it seems.

Starting the server does not lead to an index pages to be
rendered.
roundup-server support=test-tracker/

The browser just shows:

{{
  db.issue.renderWith('index',
    sort=[('-', 'activity')], group=[('+', 'priority')],
    filter=['status'],
    columns=['id','activity','title','creator','assignedto', 'status'],
    filterspec={'status':['-1','1','2','3','4','5','6','7']}
  )|u
}}
<!-- SHA: 9b2c4620b74452287d1429df204b0e9e84f6df21 -->

but not the resulting rendering.
So I am not sure if the two surprises about should be part of this issue
or not.

a) initialising tracebacks, but still has set the account (or more?)
b) There is no index page rendered
History
Date User Action Args
2019-06-03 14:11:47bersetmessageid: <1559571107.69.0.331863476132.issue2551029@roundup.psfhosted.org>
2019-06-03 14:11:47bersetrecipients: + ber, rouilj, tmikk, tekberg
2019-06-03 14:11:47berlinkissue2551029 messages
2019-06-03 14:11:47bercreate