Ruben Fiszel

Results 220 comments of Ruben Fiszel

@sqwishy New idea of a spec: Extending FlowValue with the field: ```typescript interface RetryPolicy { immediately: { attempts: int, delay?: int (seconds) } exponential_backoff: { attempts: int, constants?: int (seconds,...

👍 On Fri, Aug 19, 2022, 21:51 sqwishy ***@***.***> wrote: > how about > > { > "constant": { > "seconds": 0 > }, > "exponential": { > "multiplier": 1,...

@sqwishy We can implement that feature in the backend quite easily: new payload_capture table of (workspace_id, user, is_flow, path, created_at, payload ) 3 endpoints: - a PUT create endpoint to...

I will follow up on that, it's easier than one would think. That error is strange as it should auto setup the admin role for you but I will take...

@vanhtuan0409 Windmill needs to apply migrations that create the tables and we use the admin role mostly to bypass our own Row Level Services for granular user permissions. Would you...

@dit7ya Something I just realized, if you are only trying to build the binary: SQLX_OFFLINE=true will make it that you do not need to have a database up to create...

@vanhtuan0409 I created #403 #402 to track this. I should have thought of this earlier. The way migrations are done it is not so easy to alter past ones but...

@vanhtuan0409 @dit7ya I have applied the necessary changes in #404 and added instructions to compile from source and to run without using a superuser here: https://docs.windmill.dev/docs/how-tos/self_host

@dit7ya Is it possible that bit.io is not running Postgres 14 or have some limitations ? The fact that it returns a syntax error is really weird. CI runs those...