Simon Meers
Simon Meers
Experiencing the same issue for `invoices.get`, out of the blue today on code that previously worked fine...
Makes sense, thanks Ben
Is this the same issue as #211?
> Didn't seem to be an issue with previous versions of these packages. Confirmed downgrading to `"webpack-bundle-tracker": "^1.0.0-alpha.1"` and `git+https://github.com/oleggromov/django-webpack-loader.git@164e7e8753` works correctly. Unrelated, but I also noticed I need to...
this was on `[email protected]`
`webpack.dev.config.js`: ``` const webpack = require('webpack') const BundleTracker = require('webpack-bundle-tracker') const HtmlWebpackPlugin = require('html-webpack-plugin') const config = require('./webpack.base.config.js') const webpack_dev_url = process.env.WEBPACK_DEV_URL || 'http://localhost:8080' config.devtool = 'inline-source-map' config.entry.index = ['react-hot-loader/patch',...
Unfortunately this issue persists even in the `3.1.0` release
Thanks @sergei-iurchenko 1. ``` pid = "/var/run/gunicorn.pid" bind = "0.0.0.0:{0}".format(env("PORT", int, default=8000)) workers = env("GUNICORN_WORKERS", int, default=9) # (2*CPU_cores+1) preload_app = True max_requests = 100 timeout = env("GUNICORN_TIMEOUT", int, default=180)...
Thanks @sergei-iurchenko , I'll try changing those and will let you know if the issue recurs