Karl-Aksel Puulmann
Karl-Aksel Puulmann
Quick answers to get the ball rolling, will go more in depth tomorrow if needed. > How long does deletion typically take? Event data deletion happens on a cronjob, by...
> I made some updates for this :bow: left a few questions > Tangent question - groups can be expanded to show their properties. Is there ever a case where...
> Adding to this that a customer requested bulk deletion of people (something like a delete request with a list of IDs or a matching filter) This is separate from...
Limiting the scope of this task to only deal with persons and teams (which https://github.com/PostHog/posthog/pull/11347 + some documentation will then allow closing). Groups requires clickhouse schema changes, which makes sense...
Related: https://github.com/PostHog/posthog/issues/7963 IMO a key point we're missing right now is being able to "pivot" from one view to another while retaining filters in a sane way.
We're having this issue a lot with broken image files (dockerized linux). ```ruby [1] pry(main)> img = Phashion::Image.new("broken_image.jpg") => # [2] pry(main)> img.fingerprint convert: insufficient image data in file `broken_image.jpg'...
Ran into this sporatically when a component was being re-rendered due to props changing. Quick fix was to override `shouldComponentUpdate`. It seems there might be some sort of race condition...
Similar problem in our application.
Here's how my github action looks like, hopefully helps! ```yaml name: Update docs on: push: branches: - main jobs: update-readme: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run helm-docs...
Thanks for the feedback @mariusandra > For the rest, I'd deprecate them with warnings starting 2.0 and eventually drop then in 3.0. Sounds like a good plan - adding to...