Coder Social home page Coder Social logo

Comments (6)

wojtekmach avatar wojtekmach commented on August 18, 2024 1

Consider returning empty string so instead of return value be binary() | nil it’s just binary. At least Finch does that but it might vary between http clients.

from aws-elixir.

philss avatar philss commented on August 18, 2024 1

I'm going to tackle this one :)

from aws-elixir.

danschultzer avatar danschultzer commented on August 18, 2024

If using nil value then places like these two places have to be updated:

https://github.com/aws-beam/aws-elixir/blob/master/lib/aws/request.ex#L103-L113
https://github.com/aws-beam/aws-elixir/blob/master/lib/aws/request.ex#L44

FWIW, this is the current HTTP client impl I'm using to resolve this:

defmodule MyApp.AwsHttpClient do
  require Logger

  # TODO: Waiting for upstream fix https://github.com/aws-beam/aws-elixir/issues/59

  def request(method, url, body, headers, options) do
    ensure_hackney_running!()

    options = [:with_body | options]

    case :hackney.request(method, url, headers, body, options) do
      {:ok, status_code, response_headers, body} ->
        {:ok, %{status_code: status_code, headers: response_headers, body: body}}

      {:ok, status_code, response_headers} ->
        {:ok, %{status_code: status_code, headers: response_headers, body: ""}}

      {:error, reason} ->
        {:error, reason}
    end
  end

  defp ensure_hackney_running!() do
    unless Code.ensure_loaded?(:hackney) do
      Logger.error("""
      Could not find hackney dependency.
      Please add :hackney to your dependencies:
          {:hackney, "~> 1.16"}
      Or provide your own #{__MODULE__} implementation:
          %AWS.Client{http_client: {MyCustomHTTPClient, []}}
      """)

      raise "missing hackney dependency"
    end

    {:ok, _apps} = Application.ensure_all_started(:hackney)
  end
end

from aws-elixir.

philss avatar philss commented on August 18, 2024

@danschultzer good catch! I was using a custom HTTP client and I didn't see this problem.

The specs for http client expects body to be a binary, but I think either the body should be optional, or it should be permit nil value:

The HEAD requests should not return a body, so I think we should return nil as the body for those requests, and change the appropriate places.

Would you mind to send a PR?

from aws-elixir.

philss avatar philss commented on August 18, 2024

And thank you for opening the issue :)

from aws-elixir.

philss avatar philss commented on August 18, 2024

Wojtek has a good point. Returning only binary() makes things easier, since clients don't need to worry about treating nil values. So I am πŸ‘ on returning an empty string.

from aws-elixir.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.