Michael Rubin
Michael Rubin
What is the status of idempotent producer support?
+1 for this request. See [Terraform](https://www.terraform.io/docs/configuration/interpolation.html#math) for an example.
#978 only mentions that unnecessary warnings are generated. It seems that the app still runs. My issue is that more that warnings are generated, it seems errors are generated and...
@muuki88 Thank you for the suggestions. Trying the above I still see: ``` bin/foo-service: line 51: /opt/docker/lib/foo-service.foo-service-1.0.40-launcher.jar: Permission denied bin/foo-service: line 56: is_cygwin: not found Usage: java [-options] class [args...]...
Just tried on the latest version (1.4.1) and this is still an issue. When attempting to run the docker image, I get: ``` $ docker run --rm -it foo-service:1.0.0 /opt/docker/bin/foo-service:...
Seems like the default .bat file has a bug. It's removing the equal sign and whatever is on the right of it, from the entries. I re-ran the Windows .bat...
Hi @muuki88 - thank you for the quick response. You're correct, ``` "-J-XX:MaxGCPauseMillis=500" ``` works on Windows, but not Unix systems. I tried various tweaks and the error I get...
The issue appears to be in [these lines of :process_args](https://github.com/sbt/sbt-native-packager/blob/master/src/main/resources/com/typesafe/sbt/packager/archetypes/scripts/bat-template#L150-L156) Before calling `:process_args`, the application.ini entries look correct and after `:process_args` they are broken.
https://stackoverflow.com/questions/20572424/preserving-equal-characters-in-batch-file-parameters may be relevant. It looks like entries with `=` which are not surrounded by `"` (which does not work on Unix systems) treat the left-hand-side and right-hand-side of the...
I'm not sure that those lines are even hit in my scenario (where the entries in application.ini are not surrounded by double-quotes). What I'm seeing for my scenario is that...