Actions
action #9916
closedjob group description format is inconsistent (w/s separation)
Start date:
2015-12-15
Due date:
% Done:
0%
Estimated time:
Difficulty:
Description
observation¶
https://openqa.suse.de/ shows e.g. "SLE 12 SP1 1.Server" and "SLE 12 SP2 1. Server".
problem¶
Additional space after digit in name. Should be consistent, probably the latter.
suggestion¶
Should be easy to fix within the web admin interface. I don't have access.
The web admin interface does not offer a way to change existing entries. This has to be done manually in the database, i.e. using postgres command line tool.
Updated by okurz almost 9 years ago
- Status changed from New to Resolved
- Assignee set to okurz
fixed using postgreSQL command line tool on openqa.suse.de:
geekotest@openqa$ psql -d openqa
openqa=> update job_groups set name='SLE 12 SP2 1.Server' where id = 25;
openqa=> update job_groups set name='SLE 12 SP2 2.Desktop' where id = 26;
openqa=> update job_groups set name='SLE 12 SP2 3.HA' where id = 27;
openqa=> update job_groups set name='SLE 12 SP2 4.Staging' where id = 28;
openqa=> update job_groups set name='SLE 12 SP2 9.Test Development' where id = 29;
Every name should be in format w/o the w/s for separating the order number from the product name.
Actions