Richard Patching

Results 6 comments of Richard Patching

I managed to overcome this error by changing the line to: type = ActiveRecord::Base.connection.adapter_name.downcase == 'postgresql' ? 'uuid' : 'binary(16)'

@thebracket The problem still exists in the current master branch. I patched this locally by changing the `cls()` function in `FancyConsole` . ```rust fn cls(&mut self) { self.is_dirty = true;...

You maybe able to work around this by using the `ApplicationController` renderer. This worked in my example. Change your `render_to_string` to this: ``` ApplicationController.renderer.render( template: "pdfs/#{template}", locals: locals, encoding: "UTF-8"...

@maximeag are you able to add a test for this? They are located in `test/diskdb_test.js`, we have a small guide (https://github.com/arvindr21/diskDB/blob/master/CONTRIBUTING.md) which should help with the PR process.

Not the original author - but I believe the intent may have been to return the most recent saved items first. @arvindr21 maybe able to clarify if this is correct....

@skmani Are you able to replicate through a small snippet of code? Does the db file get removed when the app/server is stopped? Or does it persist? Is the path...