Windmill

W

Windmill

Join the community to ask questions about Windmill and get answers from other members.

Join

help

general

changelog

Database Studio Table thinks my Postgres bigint column is a string

I have a Postgres database with tables that use bigint colums for IDs. Using these tables in scripts and AgGrids works fine, but the Database Studio Table for some reason seems to interpret them as strings (even though the column config looks like it is correctly identified as bigint.) As a result, when ordering rows by ID, they are ordered lexographically (eg 1, 10, 11, 2, 20, ...). Postgres integration seems to work well everywhere else. Also, Database Studio Table doesn't seem to have this problem with MySQL tables....

Dynamically fill form enum values

Is there a way to dynamically set the options in a dropdown in an app? (output of a flow). I tried the form component and that doesn't appear to be an option.
No description

Offer S3 files for dowload in apps

We have an app where a user clicks a button, and a file is generated in a flow. We are stuck at how to now offer this file for download to the user: in our flow, we return an S3 Object which we can interactively "click" to download the generated file, but how to do this in apps? Thanks

How to enable output of info log level?

Hello everyone! How to enable output of info level logs? I use Python scripts and want to receive debug or info level logs in output. But I can only receive warning logs and higher. What is the reason for this?

Install from private repo python dep

when i install normally the dep from private repo via pip it works but if ill use, requirements or extra_requirments it wont be installed...

install extra_requirement or requirements without cache?

We have python internal libraries possible to install it without cache?

complicated objects

I get this when trying to run the windmill-cli wmill error: Import assertions are deprecated. Use with keyword, instead of 'assert' keyword. ...

Python import randomly fails

Here's my script: ```python requirements: psd_tools...

How to trigger a user-specific webhook when a job completes?

I'm triggering my scripts via API, and I have a webhook provided by another service where I want to send the result of my scripts. Is there a way to accomplish that without sending an HTTP request myself? Alternatively, is there a way to "subscribe" to a job so that I get notified when it completes without repeatedly polling its status?...

Running a script fails when executed in a flow

``` Script works well when executed by itself but when I try to run it in a flow it fails: { "error": { "name": "ExecutionErr",...

getting an 404 on a request via postman

I ´m trying to send a request to see my user info and i´m gettinh a 404 NOT FOUND. I´m filled all the requires keys,i´ve an admin account and the token is valid.What more no i need to get the success result?
No description

When Webhook get triggered?

Any events particular? Sofar webhook never got called.
No description

Possible see partial data from large json data

is there anyway to see partial data without to slice and return?
No description

Content type: application/xml for http route

Hi all, I encountered an issue with the inability to receive XML content type for the http route. It always returns 415 Unsupported media types. It supports text/plain, but most XMLs will be sent by services we can't control so it's not an option. Is there any option to accept XML's? Currently only thing cames to mind is modify caddy config to change request headers to text/plain when they are application/xml...

Worker on demand

Instead of having workers running full time, is it possible to have a worker spin-up only when there are jobs to process? (e.g. with AWS Fargate)

Licence downgrade

I was running Windmill with enterprise, but was not using any of the main features. The paid sub has ended, and I have removed the licence key from Instance settings however I am not able to run my scripts anymore. Is there something I am missing to downgrade?

Move scripts and flows to new workspace

I just realised I've been putting everything in the admins workspace. How can I move everything to a new workspace?

What is the difference between a worker and a native worker?

I still don't really understand the difference between these two worker types and the documentation doesn't seem to really go into it other than to mention the default tags for each. Is it the case that a regular worker runs in a container but a native worker runs on the host? Or something else?...

Flow operator can view everything about a flow

I want to limit access for operators. I usually create a flow, then create an app on top of it in the same folder. As far as I'm aware, you have to give the operator access to the folder for the app, and the flow that the app uses, correct? So even if I put the flow in another folder, it wouldn't help... The problem with that is that the operator can go into a flow's view, read all the code and inspect all the logs of a flow execution. This is what I want to prohibit. How do I essentially just give them access to run the app UI while keeping the flow hidden? I tried archiving a flow, but that has git sync issues where wmill sync pull seems to see those flows as "deleted" - which breaks my CI/CD...

How do I act on the exit code of a previous flow step?

I cannot see any support for exit codes whatsoever, which seems like a huge omission, unless I'm missing something. Moreover, if I write a simple inline Bash step that just contains exit 1, the flow proceeds to the next step, reporting success. This is not at all what I expect.