Vahid Fazlollahzade
Vahid Fazlollahzade
This is how I send and handle response. ```elixir defp request(encoded_obj, url, apikey) when is_bitstring(encoded_obj) do headers = if apikey, do: [{"Content-Type", "application/json"}, {"apikey", apikey}], else: [{"Content-Type", "application/json"}] options =...
I'm still having this issue. Any idea on how can I track this?
Using `config :httpotion, :default_ibrowse, [max_sessions: 5000, max_pipline_size: 5000]` in my config file. Unfortunately, this does not fix my `retry_later` errors. Am I using the options right?
I don't get how direct mode works. I spawn a worker for myself, and use it whenever I want. Right? Does this worker have a life span or something? How...
I don't know if situation has changed, but I'm using it on BS 11.6, M1, Persepolis version 3.2.0 installed using homebrew. It works for me.
I also want this. For the time being, is there anyway to make it consider `.` and `:` legit characters for tag names?
One more thing to add is that searching for error, yields results that people are having **warning**s, but I'm getting a fatal error.
More testing and PHP 8.0.10 also fails with the same error.
As it seems people are facing this more and more, it’s good to know that you can install PHP 7.4 using brew: `brew install [email protected]`. It may help someone.
I was able to get past Postgres issue like this: ``` PHP_WITHOUT_PDO_PGSQL=yes PGSQL_INCLUDE="/opt/homebrew/opt/postgres" PHP_CONFIGURE_OPTIONS="--with-pdo-pgsql=/opt/homebrew/opt/postgres/ --with-pgsql=/opt/homebrew/opt/postgres/" asdf install php 7.4.23 ``` But if you run it, you will encounter other issues....