Victor Ivanov
Victor Ivanov
I think Sentry has this one implemented, but they have to parse the log to achieve this. It looks like BEAM is that easy to instrument to catch all unhandled...
Can somebody help with this one? A workaround to ignore these long poll requests would also work, I think
this is how I did it: comment out lines 75 - 79: ``` js // $('#' + opts.fallback_id).css({ // display: 'none', // width: 0, // height: 0 // }); ```...
@AlexisBRENON the file you mentioned has this line ``` local keysPresent = redis.call("KEYS", "KEYS_PATTERN") ``` So it looks like that you can ignore that part of `eval` doc. At least...
Just my 2 cents here: we have an issue with this gem and clockwork_web gem, all timestamps are off by an hour ``` irb(main):085:0> helper.distance_of_time_in_words_hash(Time.now, ClockworkWeb.last_heartbeat) => {:seconds=>9} irb(main):086:0> helper.distance_of_time_in_words_hash(Time.current,...
I believe this issue has been fixed by #128
interesting! it is def fixed for my use case 5.3.2 ``` irb(main):041:0> helper.time_ago_in_words ClockworkWeb.last_runs["a_recurring_job"].in_time_zone => "less than 1 second" irb(main):042:0> helper.time_ago_in_words ClockworkWeb.last_runs["a_recurring_job"] => "12 seconds" irb(main):043:0> helper.time_ago_in_words ClockworkWeb.last_runs["a_recurring_job"] => "13...
@blackjid can you share your `pub` location? Mine looks like so ``` location ~ /pub/(.*)$ { nchan_publisher; nchan_channel_id $1; nchan_message_buffer_length 0; nchan_message_timeout 30s; nchan_deflate_message_for_websocket on; } ``` and I guess...
@andjosh you can at least mitigate this with ``` worker_processes 1; ``` That way if worker dies it will be restarted by the master and I bet nobody will even...