sergio
My Github CI has been down since yesterday morning. Any else experiencing this issue?
Error: 14:04:41.018 [error] Failed to connect to ‘raw.githubusercontent.com’ to download locale :“en-IE”. Reason: {:tls_alert, {:unexpected_message, ‘TLS client: In state hello_middlebox_assert at ssl_gen_statem.erl:736 generated CLIENT ALERT: Fatal - Unexpected Message\n {unexpected_msg,{internal,{encrypted_extensions,#{sni => {sni,}}}}}’}}
People on Twitter also seem to be complaining.
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Is there a word for the ~> symbol used in Version strings?
Do you also just call it a Squiggle Arrow™ ?!
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
They had a pretty big hickup and even though they claim it’s resolved, various people on HN were saying they still had problems: GitHub Status - Incident with Actions
michelson
It seems to be an issue with Erlang version, I’ve upgraded to OTP 25 and error gone.
ref: github actions SSL error · Issue #184 · elixir-cldr/cldr · GitHub
sergio
We had to make this change to unclog the CI on Github. Hope this helps people.
Still a very weird fix – what if you are on a very legacy setup and cannot freely update such a integral part of your stack to a next major revision? I shudder to think.
nathanalderson
Currently in this boat. Can’t just update OTP immediately. It seems to work okay on my up-to-date local Arch environment, but fails in our Ubuntu 22.04 production container (which is also up to date). Also, curl and wget inside the container can fetch the file just fine.
Interested in any other workarounds folks may find.
mlen
Please anyone has some solution for this?
Migration to
OTP 25isn’t on the table for us due to legacy code.This is super weird issue.
We locally build with
mix releaseand Dockerfile (the target OS is different from dev OS) and it fails onmix assets.deploywith the dependency ofdart-sassfailing to download itself from GitHub.However, running
mix assets.deployon dev OS there’s no issue with CA certs. (dev OS has same elixir/OTP setup).Rodeoclash
Weird error, I’m getting exactly the same thing running the official Docker image
elixir:1.13.4only in Github CI. Not related to Dart but to downloading Tailwind.Anyone upgraded to the 1.14rc image? Does that fix it?
EDIT: Looks like it will because it’s on OTP 25 - still rc code
mlen
There’s official docker image for
elixir:1.13.4based on OTP 25 and you might get away with that?I found out that OTP 25 added two new methods to get OS provided CA-certs.
When I get on my laptop again I will simply disable HTTPS check in
dart-sasslibrary until it gets fixed in itscastoredependency - if I understand this issue correctly…EDIT: either upgrade to
OTP 25or wait for new release ofcastoreif your code (and its dependencies) depend on this CA library.Rodeoclash
Oh, nice spotting. I missed it in the list of images on Docker Hub. Thanks!
carterbryden
If anyone else is running into some odd errors related to this, these are the steps I had to go through to get back up and running:
Without all of those, I was getting similar errors to this thread, or erts errors.
johnnyshields
Did anyone identify the exact root cause of this problem? (i.e. beyond upgrading to OTP25 magically fixes it)