Joachim B Haga

Results 65 comments of Joachim B Haga

I have the same problem. Did you find a workaround?

No worries! In my case, I switched an older static (ejected) configuration to use create-react-app (CRA). The problem seems to be the same on Django 2 and Django 3, but...

Same problem here (1.5.0). After wrapping webpack config with `smp.wrap` as described in Usage, `%PUBLIC_URL%` in index.html is not replaced as it should.

Current workaround is to make it conditional in build.js, ``` if (process.env.MEASURE_BUILD) { ...wrap... } ``` and don't use the measured builds for anything (except measuring of course).

A workaround that seems to work for me (my use case is demarshalling based on string types, so YMMV). The `__post_init__` code may not be necessary, or maybe you want...

It looks like the `write_direct` path in `_chunk_getitem` prevents caching in many cases. Maybe disable `write_direct` if both a cache and a compressor is attached.

Looking at the git-lfs spec, it might be as simple as pass-through for the "batch" request [(doc)](https://github.com/git-lfs/git-lfs/blob/master/docs/api/batch.md) and caching the "transfer" result [(doc)](https://github.com/git-lfs/git-lfs/blob/master/docs/api/basic-transfers.md). Perhaps optionally ignoring the authentication token when...

For those looking for a quick recipe, I tried it just now using the suggested datasource configuration in the comment above. I had to change the url address to `http://loki:3100`...

To second @gimbo's comment, we got only blank space where the plot was supposed to be after refactoring to use [redux-toolkit](https://redux-toolkit.js.org/) (which uses [immer](https://immerjs.github.io/immer/docs/freezing) under the hood). This was part...

I don't know if this helps, or if it's anywhere close to intended usage, but I was struggling with a similar issue (wanting different `pythonpath`s) and ended up with this...