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

Update SleepRegularityIndexUtil.java #9

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

Conversation

petrnalevka
Copy link

It seems Joda DateTime has an issue with gaps for non existent dates caused by day light saving etc..

See
https://stackoverflow.com/questions/5451152/how-to-handle-jodatime-illegal-instant-due-to-time-zone-offset-transition

So I have migrated DateTime to use LocalDate instead and set the tiemzone to UTC otherwise we see crashes fro various timezones. Hope this does not break something in the calculation?

org.joda.time.IllegalInstantException: Cannot parse "2022-10-16": Illegal instant due to time zone offset transition (America/Sao_Paulo)
org.joda.time.format.DateTimeParserBucket.computeMillis(SourceFile:390)
org.joda.time.format.DateTimeFormatter.parseDateTime(SourceFile:856)
org.joda.time.DateTime.parse(SourceFile:144)

It seems Joda DateTime has an issue with gaps for non existent dates caused by day light saving etc.. 

See
https://stackoverflow.com/questions/5451152/how-to-handle-jodatime-illegal-instant-due-to-time-zone-offset-transition

So I have migrated DateTime to use LocalDate instead and set the tiemzone to UTC otherwise we see crashes fro various timezones. Hope this does not break something in the calculation?

org.joda.time.IllegalInstantException: Cannot parse "2022-10-16": Illegal instant due to time zone offset transition (America/Sao_Paulo)
	org.joda.time.format.DateTimeParserBucket.computeMillis(SourceFile:390)
	org.joda.time.format.DateTimeFormatter.parseDateTime(SourceFile:856)
	org.joda.time.DateTime.parse(SourceFile:144)
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.

1 participant