Rasmus Porsager

Results 316 comments of Rasmus Porsager

Ok, I've narrowed this down to be between `2.5.2-31` and `2.5.3-1`. > Partclone was updated to 0.3.6. //NOTE// New image format is used in this release. My best guess is...

I've tried a bit more, and I've found that using partclone `0.2.91` with the latest stable clonezilla `clonezilla-live-2.5.5-38-amd64` solves the issue.

Hi Steven.. Sorry for the late reply. I haven't had time to try it out in a virtual machine, and don't know when it's possible for me. The tests you...

@StevenJPx2 you most likely have dynamic input values that are undefined. If users can supply these values and you aren't handling undefined cases, this can happen at any time.

Great to hear ☺️ Out of curiosity, was it a good thing in your case that Postgres.js didn't allow undefined to be implicitly converted to null? eg. what would have...

there already is 😉 https://github.com/porsager/postgres#transform-undefined-values

at a query level just convert to null like: ``` update x set name = ${ someValue || null ``` But no there is currently no way to convert all...

How does you connection object to pg look? (the same)? I suppose in the above you have the correct project, region and db-name in your `/cloud/...` string, but simply replaced...

Ah i see. Could you try to post a sample of the link you use in pg without the placeholders, but just some random strings instead?

Could you try to log `sql.options` before making your first request and look if everything looks right? (might be some url encoding on some of the props causing trouble?)