François Charette
François Charette
I had the same issue, and it took me a while until I found this page. I also vote for the above proposal.
Alternative to @enaut's `generate_qr_png`, using `image::codecs:png::PngEncoder` directly: ```rust fn qrcode_png(content: &String) -> Vec { let qrcode = QrCode::new(content).unwrap(); let image: image::ImageBuffer = qrcode.render::().build(); let mut buf: Vec = Vec::new(); let...
I think the binary is only shipped as a minimalistic/simplistic demo, and is not really intended for real-world usage. It only takes a single argument (the QrCode content) and prints...
@lordofthejars can you please have a look at this PR? Thanks!
@rhuss I've encountered this as well. It is caused by incorrect permissions of the script `run-java.sh` on the container image: ``` # ls -la /deployments/ -r-xr-----. 1 1001 root 19272...
I have the exact same issue. OpenShift Serverless 1.29 OpenShift Pipelines v1.11.0 `kn` v1.10.0 `kn-func` v0.37.0-6-gf38444bf The PipelineRun succeeds and the function is correctly deployed, but as soon as I...