Has someone deleted the master branch #252
Replies: 4 comments 2 replies
-
The message indicates that a secure connection can't be established to GitHub. The ex_cldr 2.17.2 release is about 5 years old so my advice would be to move to the current version. You shouldn't find any breaking changes in the API (as best I am aware). Can you clarify what Elixir and OTP versions you are using? OTP in particular had a few issues in versions around 24 and 25. If you truly can't upgrade for some reason, then manually download the locale files (after checking out the v2.17.2 tag) and put them in your locale directory. Thats typically I seem to recall there were issues with both Erlang SSL module, certificate stores and an issue with CA trust chains but I can't recall the details right now. You might find this thread useful. If you are also downloading locales manually then yes, the |
Beta Was this translation helpful? Give feedback.
-
I didn't suggest I thought it was a network issue. I said the message indicates it's an SSL/TLS issue. Since You suggested this is an issue with "master" branch being deleted. You haven't provided anything to suggest that has anything to do with the issue you're seeing. Do you have more information? I don't see anything that suggests there's an issue with git branches. Test app compiles and downloads correctlyI just built a test app with:
And it built and downloaded the locales with no issue: % mix compile --force
Compiling 1 file (.ex)
04:33:47.668 [info] Downloaded locale "de"
04:33:47.780 [info] Downloaded locale "fr"
Generating T1 for 4 locales named ["de", "en", "fr", "root"] with a default locale named "en"
Generated t1 app Further debuggingYou can do some further debugging in an iex session by manually downloading a locale: % iex -S mix
Erlang/OTP 23 [erts-11.1.6] [source] [64-bit] [smp:16:16] [ds:16:16:10] [async-threads:1] [hipe]
Interactive Elixir (1.11.2) - press Ctrl+C to exit (type h() ENTER for help)
iex> Cldr.Install.install_locale_name "ja", %Cldr.Config{locales: :all}
04:43:50.382 [info] Downloaded locale "ja"
{:ok, "cldr/locales/ja.json"} As you can see, that downloaded without error on Elixir 1.11.2, OTP 23. |
Beta Was this translation helpful? Give feedback.
-
One more thing you can try: add |
Beta Was this translation helpful? Give feedback.
-
@kipcole9
Thank you for the quick support on this :) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi team, we use ex_cldr package with the following version: 2.17.2
In this version the install.ex file defines the use of master branch to download the locales. (Line: 251).
Has someone deleted the master branch?
We are noticing the following issue.
Beta Was this translation helpful? Give feedback.
All reactions