We are trying to use Azure Service Bus along with searchkick and azure-storage-blob(Both use Faraday gem). Azure service bus does not have a separate distinct library like azure-storage-blob and so, for it to work I had to install both azure and azure-core. Just installing azure into our application, is not letting us use the Azure::ServiceBus::Auth::SharedAccessSigner which is required for us to communicate to the service bus.
Here is the problem. searchkick and azure-storage-blob uses faraday ~> 1.0, but azure-core uses faraday ~> 0.9, which is causing us to work with an older version on the above said gems. Is there any way, this gem can be updated to use faraday ~> 1.0? Any help is appreciated.
We are trying to use Azure Service Bus along with
searchkick
andazure-storage-blob
(Both use Faraday gem). Azure service bus does not have a separate distinct library like azure-storage-blob and so, for it to work I had to install bothazure
andazure-core
. Just installingazure
into our application, is not letting us use theAzure::ServiceBus::Auth::SharedAccessSigner
which is required for us to communicate to the service bus.Here is the problem.
searchkick
andazure-storage-blob
usesfaraday ~> 1.0
, but azure-core usesfaraday ~> 0.9
, which is causing us to work with an older version on the above said gems. Is there any way, this gem can be updated to usefaraday ~> 1.0
? Any help is appreciated.Thanks in advance.