johnlane
johnlane
Hello, I just wanted to add my interest for this function. Ideally it would also be able to read a key file from a LUKS-encrypted USB stick, and my use...
Just in case it helps anyone else passing here, saving you the time it took me to [work this out](https://github.com/oracle-terraform-modules/terraform-oci-vcn/blob/main/modules/subnet/subnet.tf). ``` subnets = { "red": { cidr_block = "10.0.0.0/24", dns_label...
Maybe [this StackOverflow question](http://stackoverflow.com/questions/35188101/kaminaricells-paginate-method-not-rendering-anything/35188102#35188102) is a similar related problem?
Currently I am including it into `Cell::Concept` in an initializer: ``` Cell::Concept.class_eval do include Cell::Erb include Trailblazer::Translation extend Trailblazer::Translation ... other stuff ... end ```
The effect of `prepend` is to move `Trailblazer::Translation` up, but not up far enough... ``` Kaminari::Helpers::CellsHelper, Kaminari::Helpers::CellsHelper, Cell::ViewModel::Partial, Cell::ViewModel::Partial, ActionView::Helpers::TranslationHelper, ActionView::Helpers::TranslationHelper, Kaminari::ActionViewExtension, Kaminari::ActionViewExtension, Kaminari::Cells, Kaminari::Cells, SimpleForm::ActionViewExtensions::FormHelper, SimpleForm::ActionViewExtensions::FormHelper, ActionView::Helpers::FormOptionsHelper, ActionView::Helpers::FormOptionsHelper, ActionView::Helpers::JavaScriptHelper,...
I've just tried syncftp (Ruby 2.0.0p247) and found that it doesn't work without this patch. What happens is this: ``` /usr/lib/ruby/2.0.0/net/ftp.rb:324:in `getresp': 450 remote/dir/.syncftp: No such file or directory (Net::FTPTempError)...
don't know, I've move on to other things since then. If I get some time I will take a look...
I called it a regression because it worked with the lxd provider and it does not work with the incus provider. The idea is that a property that is given...
I just checked the LXD providers that I was using where this feature worked and I have between 1.41 (Dec 12m 2020) and 1.73 (Nov 2, 2022). The tests above...
I just did a quick test (LXD provider 2.6.1) and it also fails with a null value. ``` resource "lxd_instance" "test" { name = "test-resource-lxd" image = "images:busybox/1.36.1 wait_for_network =...