Hans Kristian Flaatten
Hans Kristian Flaatten
You need to install the [ImageMagick binaries for Windows](http://www.imagemagick.org/script/binary-releases.php#windows)
Sorry for the late response @erezger! Could you open PowerShell and run the following command: ``` identify -version ```
You need to reinstall and make sure to check “Add application directory to your system path” in the installation, otherwise Windows won’t recognize any of the commands and tell you...
@gustavost26 Could you open PowerShell and copy/paste the output from the following command: ``` identify -version ```
Thanks a lot @gustavost26, I am currently not on a Windows machine so I appreciate you helping me out. Could you try this approach suggested in aheckmann/gm#296: ``` js process.env['PATH']...
Good catch, @AdeOpe 🙂 Can you test with an absolute path starting with a `/my-redirect-path`?
Ran in to this issue as well. Recreated the `postgresql` cluster with an existing volume. The new cluster started up but the postgres operator is failing with the following error...
@FxKu can we get this in, please? 🙏🏻 We need a way to monitor sync status from the operator's point of view.
Any updates on this? 😄
I'm interested in this as well. Currently doing the `/dev/null` approach: ``` javascript form.on('part', function (part) { if (!part.filename || /\.(gif|jpe?g|png)$/i.test(part.filename)) { return part.pipe(fs.createWriteStream('/dev/null')); } }); ```