LoTi
LoTi
I am having the same issue. Even with executable compiled from an empty js file. ``` 0|test | internal/validators.js:124 0|test | throw new ERR_INVALID_ARG_TYPE(name, 'string', value); 0|test | ^ 0|test...
@ianstormtaylor Sorry for the late reply. @paescuj is right, this happens when you wrap the enums inside an object. Please find the screenshot below. 
@alicercedigital replace your enums with union([literal("string1"), literal("string2")]) should get around the problem.
using the `dynamic` ```ts const S = defaulted(string(), ""); const N = defaulted(number(), 0); const T = dynamic((value) => value ? S : N); create(1, T); ``` gives ```Type 'Struct...
That will improve the DX significantly. And sounds like a really easy thing to do. Just define a new PgError class and update all of the throw statements. @brianc would...
bumped into the same issue. Although the use case is slightly different. I have 3 distinct services that shares a same image but launch with different commands.
Just got caught with the same error. And it's causing my database to bloat with the WAL piling up...
I believe the key problem here is the "subscribe" creates a *temporary* replication slot on the database. As soon as the database shuts down, that original replication slot is gone...
@mattbishop done. Happy to add a test case for it as well. But I am not sure what would be best way to go about it. Specifically what's the best...
@porsager That's kind of what I am doing in the error handler anyway so that will work for me. Just think it would be better to let the user to...