An exception occurred while rendering the web panel
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
症状
An exception occurred while rendering the web panel:
com.atlassian.jira.jira-view-issue-plugin:attachmentmodule (null)
java.lang.IllegalArgumentException: invalid extra field length
at java.util.zip.ZipEntry.setExtra(ZipEntry.java:243)
環境
Jira Data Center
原因
From the logs, we found this following stack trace error :
2015-03-12 01:48:21,335 http-bio-8180-exec-6741 ERROR gannasr 108x4302739x1 ywyb22 134.37.74.122,10.47.102.245 /browse/ARGO-69595 [jira.web.component.ModuleWebComponentImpl] An exception occured while rendering the web panel: com.atlassian.jira.jira-view-issue-plugin:attachmentmodule (null)
java.lang.IllegalArgumentException: invalid extra field length
at java.util.zip.ZipEntry.setExtra(ZipEntry.java:243)
Troubleshooting Steps
Ask the user to provide the following SQL result
select * from fileattachment where issueid = (select id from jiraissue where pkey = 'ARGO-69595');
Replace "ARGO-69595" with the issue key which is stated in the error from the stack trace.
- After looking at the sql result, we noticed that the fileattachment table contained NULL variable in ZIP column.
ソリューション
- Backup JIRA
- Jira を停止します。
Run the following SQL command on the database
update fileattachment set zip = '1' where ID in ('162115');
または
update fileattachment set zip = '1' where ID in ('162,115');
- Jira を起動します。