Pritam Pramanik
Pritam Pramanik
Hi @laserlemon @sferik , we need HMAC-SHA256 encoding to be supported by `simple_oauth`. Our rails app is depended on https://github.com/instructure/ims-lti gem. We have received an error from `ims-lti` gem. And...
Thank you @CrandellWS I have solved it using your solution this way. ``` const image = "https://s3-us-west-2.amazonaws.com/github.png?1551296103" const timestamp = new Date().getTime(); const imageWithTimestamp = image.includes('?') ? `${image}&v=${timestamp}` : `${image}?v=${timestamp}`;...
if I use this in my gemfile I am able to make it work. :) `gem "cloudwatch_scheduler", github: "paul/cloudwatch_scheduler"`
Thanks for the help. Now I am facing a different issue `Segmentation fault`. ``` /usr/local/bundle/gems/google-protobuf-3.23.3-aarch64-linux/lib/google/protobuf/descriptor_pb.rb:13: [BUG] Segmentation fault at 0x0000000000003610 ruby 2.7.5p203 (2021-11-24 revision f69aeb8314) [aarch64-linux-musl] -- Control frame information...
if anyone has any working example of Dockerfile, please share. I am ok with not using alpine as base image. @Envek , the below one I have right now with...