Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

time zoneが動かない #111

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft

time zoneが動かない #111

wants to merge 1 commit into from

Conversation

Luftalian
Copy link
Contributor

#106
trendのAPIが
2023/07/02 16:33:23 INFO Error GetTrendOneday LoadLocation: %v !BADKEY="unknown time zone Asia/Tokyo"
と言われ動かない問題を修正しようとしているが、解決方法が見つからない。

@Luftalian Luftalian requested a review from oribe1115 July 2, 2023 07:37
Comment on lines +33 to +35
RUN apk add --update --no-cache ca-certificates tzdata && update-ca-certificates \
&& cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime \
&& rm -rf /usr/share/zoneinfo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

この書き方にしたらtime.LoadLocation("Asia/Tokyo")がちゃんと実行できました

Suggested change
RUN apk add --update --no-cache ca-certificates tzdata && update-ca-certificates \
&& cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime \
&& rm -rf /usr/share/zoneinfo
RUN apk add --update --no-cache tzdata \
&& cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime

portalの実装ではタイムゾーンの参照はLocalとしてしかしていないので/etc/localtimeにさえAsia/Tokyoの情報があればOKだったみたいです

ですが、traQ gazerではtime.LoadLocation("Asia/Tokyo")として参照しているので/usr/share/zoneinfo以下に該当のタイムゾーンの情報が存在している必要があるみたいです
golangのtimeライブラリでタイムゾーン変換

また、ca-certificatesパッケージやそれを使ってのupdate-ca-certificatesではtraQ gazerには不要です

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants