Getting WARN messages due to Hexadecimal color codes in Team Calendars
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
要約
As Confluence administrator, you find numerous WARN entries in the logs related to hexadecimal colors used in Team Calendars
環境
Confluence 8.X
診断
In the atlassian-confluence.log
files, you will find multiple messages such "setSubCalendarHexColor SubCalendar color value is hex"
原因
As per Team Calendars data model, the colour is stored in COLOUR
column inside table AO_950DC3_TC_SUBCALS
. Team Calendars do not keep the colours in HEX code, but with a coding such as "subcalendar-yellow" or "subaclendar-green2"
It is unclear how these color codes were imported into Confluence, as Team Calendars currently does not support custom color codes beyond the predefined ones. There is a suggestion raised about this under CONFSERVER-51016 - Getting issue details... STATUS
ソリューション
There is no harm in these messages, but it is easy to get ride of them following the steps below.
Run the following SQL statement to see what Team Calendars are the one using this HEX colours:
SELECT "COLOUR","ID","NAME"
FROM "AO_950DC3_TC_SUBCALS"
WHERE "COLOUR" LIKE '#%'For those entries you found, execute the following statement to UPDATE all of them to a colour you choose, in this example, red:
UPDATE "AO_950DC3_TC_SUBCALS"
SET "COLOUR" = 'subcalendar-red'
WHERE "COLOUR" LIKE '#%'- Restart Confluence