
|
If you were logged in you would be able to see more operations.
|
|
|
|
Environment:
|
Customer: JIRA Enterprise 3.6.5 using PostgreSQL.
Me: JIRA Standalone Enterprise 3.10.1 using MySQL
Customer: JIRA Enterprise 3.6.5 using PostgreSQL.
Me: JIRA Standalone Enterprise 3.10.1 using MySQL
|
|
Issue Links:
|
Reference
|
|
|
|
This issue is related to:
|
|
|
JRA-8293 Import fails if searchrequest:request data too large
|
|
|
|
|
|
|
Create a group with a name longer than 60 characters. Then try to add it to a notification scheme. You get the following error (on the screen as well as in the logs):
The problem is that the notif_parameter column of the notification table is a varchar(60), and the groupname is stored directly in this field.
The groupname field of the groupbase table is varchar(255).
This bug is compounded by the fact that you can't simply change a group name (to reduce it to less than 60 characters).
A support customer has this issue in 3.6.5 Enterprise running on Postgres. I have reproduced it in 3.10.1 Enterprise running MySQL.
|
|
Description
|
Create a group with a name longer than 60 characters. Then try to add it to a notification scheme. You get the following error (on the screen as well as in the logs):
The problem is that the notif_parameter column of the notification table is a varchar(60), and the groupname is stored directly in this field.
The groupname field of the groupbase table is varchar(255).
This bug is compounded by the fact that you can't simply change a group name (to reduce it to less than 60 characters).
A support customer has this issue in 3.6.5 Enterprise running on Postgres. I have reproduced it in 3.10.1 Enterprise running MySQL. |
Show » |
|
Need to check what else we store in the parameter column. That is, check trhough all notifications types (notification-event-types.xml)
If we change the width of the column, it might not work as I am not sure if OfBiz handles this case. So we will need to do what we did in 3.7:
Cheers,
Anton