Windmill

W

Windmill

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

Join

help

general

changelog

Run docker container in flow and curl against it

Heya, I'm trying to spin up a docker container as part of a flow and I want to wait for it to be available. Here's what I have so far, but it doesn't seem to be reachable via cURL from here. ```bash shellcheck shell=bash...

[FIXED] TS Bun Deployment Fails with with googleapis lib

Hi, noticed that deployment of TS Bun script is failing, even though code execution works as expected when the script is tested mimimum reproducible .ts bun script ``` ...

from script assign which worker group

Is there a way we can decide which worker group script gonna run from the script?

passing down maps in a flow

Is passing down objects in typescript like Map<string,number> supported in flows? Because I can print it in my script but when I pass it downwards in a flow, it's complaining about undefined

[FIXED] Windmill Database Studio Type Conversion Issue

I'm running into a strange issue with Windmill's Database Studio component that I thought I'd share: Is it an issue with my database? Context:...
No description

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)
Next