We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
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
JRuby bundled tzdata doesn't contain recent changes to time zones in Russia, so Time.now works incorrectly:
Time.now
In 14:57 MSK:
» jruby -e 'puts Time.now' 2014-10-27 15:57:33 +0400`
To fix the issue JRuby needs to update bundled joda-time to 2.5, which contains correct tzdata rules.
» JRUBY_CP=joda-time-2.5.jar jruby -e 'puts Time.now' 2014-10-27 14:57:37 +0300
For now we are using JRUBY_CP variable as temporary workaround, but it only work with bash-based jruby launcher, not native one.
The text was updated successfully, but these errors were encountered:
are you saying updating joda-time to 2.5 will solve this ?
Sorry, something went wrong.
Yes, exactly.
fixed via cce325d
No branches or pull requests
JRuby bundled tzdata doesn't contain recent changes to time zones in Russia, so
Time.now
works incorrectly:In 14:57 MSK:
To fix the issue JRuby needs to update bundled joda-time to 2.5, which contains correct tzdata rules.
For now we are using JRUBY_CP variable as temporary workaround, but it only work with bash-based jruby launcher, not native one.
The text was updated successfully, but these errors were encountered: