The hyper client in UrlStorage should ideally be replaced with reqwest, which has more functionality such as following HTTP redirects. This is useful for properly traversing responses from UrlStorage in contexts that involve load balancers. Previously we transitioned away from reqwest in order to have a smaller/more core library as a dependency. However, now there are additional use cases for having a more feature rich client library in UrlStorage.
This was fixed under the crypt4gh branch here, and could be ported over to main.
The hyper client in
UrlStorage
should ideally be replaced withreqwest
, which has more functionality such as following HTTP redirects. This is useful for properly traversing responses fromUrlStorage
in contexts that involve load balancers. Previously we transitioned away fromreqwest
in order to have a smaller/more core library as a dependency. However, now there are additional use cases for having a more feature rich client library inUrlStorage
.This was fixed under the crypt4gh branch here, and could be ported over to main.
Potentially related to #243.