Edgars Beigarts
Edgars Beigarts
My apps are not starting after restarting the whole server. ``` $ dokku ps:start -----> Releasing ... -----> Deploying ... time="2015-05-20T10:36:23+03:00" level="fatal" msg="Error response from daemon: Cannot start container 912a209188613d510fd2582d67eedd7b2242e1663d822fe6fe87ac88009bd5a0:...
I was receiving similar errors to Issue #63. ``` DRb::DRbConnError: druby://myhostname:17811 - # ``` So I started investigating, and I found that in [63d054](https://github.com/bernerdschaefer/akephalos/commit/63d0541b7f4368ecd754ea087f13c1058008b5c6#L0L25) it was set explicitly to bind...
To get Rack::Cache working with Devise/Warden you must insert Rack::Cache before Warden::Manager, or else you will get "undefined method `camelize' for nil:NilClass" when loggin in your application - ``` config.middleware.insert_before...
The issue seems to be the same as #345. - `uname -a`: Linux 4.4.0-21-generic #37-Ubuntu SMP x86_64 (Ubuntu 16.04 LTS) - `docker version`: 1.11.2 - `docker run -ti gliderlabs/herokuish:latest herokuish...
## Environment ProductName: Mac OS X ProductVersion: 10.13.5 BuildVersion: 17F77 TinyTDS Version: 2.1.2 FreeTDS Version: 1.00.104 Ruby: 2.3.1 ## Description `TinyTds::Client.new` blocks the other threads for 60s if the mssql...
I think it would be easier to just write `konacha` instead of `rake konacha`. ``` bash rake konacha:serve rake konacha:run rake konacha:run SPEC=foo_spec,bar_spec ``` => ``` bash konacha serve konacha...
When i spcecify config.application_framework = :external with webrat 0.4.4 I am getting: Given I am logged in # features/step_definitions/login_steps.rb:1 Unknown Webrat application_framework: :external ``` Please ensure you have a Webrat...
Currently there is no way to configure `timeToWaitForATTUserAuthorization` for `AppsflyerPlugin`. It is hardcoded as `60`. In our app the tracking prompt is not triggered on the first screen, so we...
To avoid duplicate events in FB, FacebookAppEventsPlugin should set `event_id` as `messageId`, similar as Segment's Pixel Destination and default conversions api mapping, by using `event_id: messageId`. https://github.com/segmentio/analytics-react-native/blob/master/packages/plugins/plugin-facebook-app-events/src/FacebookAppEventsPlugin.ts#L162-L164 [Conversions API for...