Windmill

W

Windmill

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

Join

help

general

changelog

Python cchardet lib

Hello! Why can't I import the python cchardet library to windmill?
No description

Draggable event listener for group container

I've been tasked with evaluating Windmill to build an application (lets just say 'similar' to Trello). I was wondering how I can listen for 'drag/drop' event on a group container? Or maybe I'm using the wrong type of component ...

Bun - not working typescript intellisense on imported npm modules

Hi, when I'm using Bun as a runtime I don't get any typescript info when I'm importing non-standard npm modules, like here: ```ts import { thingThatDoesntExist } from "zod"; ...
No description

Worker group tag

This Worker group is disabled... But I have several worker groups. I have restart the server & worker. Not sure what I can do.. I set the worker tags from the UI they are not in my docker-compose file....
No description

wmill cli sync error

When doing this command: $ wmill sync pull --raw --yes --token "<valid-and-verified-working-token>" I get the follow error message: ``` Debug logging enabled. CLI build against v1.201.0...

On Select Change Event Listener

I have a select box that's in a table in the action column and I have it populated with some items that have a label and URLs as the values. I'm looking to fire off some script when the action changes and I have no idea on how to make this happen. Is this a background (frontend) runnable? I tried standard javascript event listeners but those are not working. I appreciate any direction!

Configuring docker daemon used by windmill

Hi, I've attempted to configure the host daemon.json and ensure that /var/docker folder is mounted to windmill... but it doesn't seem to take effect. Can anyone shed some light on this?...

Components css classes

The Tabs component's css classes aren't applying the styles to the component on a Windmill cloud App. I noticed that on the elements html (with chrome inspect) the class ".wm-tabs-alltabs" is not on any elements. Also for agGrid-EE is there any way to remove the outer border, not the one being defined by the aggrid styling, but the one outside of the aggrid element (picture attached)? I achieved this by changing the border-width for the global .border class to 0px, but that changes all elements that use the .border class....
No description

Connection did not resolve

i'm trying to get a postgresql resource within our kubernetes cluster to work. i get a "Connection did not resolve for 5s" message back, but no other clues.
i add the full internal domain and login etc works when using psql client within the cluster...

Import error script not found

On our first workspace, we had no problem importing another def. On our new workspace, we can't import an another def. We don't understand.
No description

Concurrency

The decision has been made...?
No description

Python 'AttributeError' for modules

Hi, Im trying to run a python script in Windmill's UI, but am getting an 'AttributeError' for certain packages such as numpy (example in screenshot). When I run print(numpy), I get the following: <module 'numpy' (<_frozen_importlib_external.NamespaceLoader object at 0x7f28c4de3750>)>. However, I was told by support that I should see the following and could be an instal issue on my end.

What does Filter-by-args-set do on run's page

I add here {"key": "24434"}, it is giving me in results those runs also which have {"key": "32432}
No description

One particular workspace's schedules page takes too long to load

Earlier it was 3-4 seconds, now upto 10 seconds. Other workspace's schedule page load as usual 1-2 seconds but this particular workspace takes too long, I check in chrome network inspector, the api takes too long to finish. ...

Using a function's output typescript types in the next step of the flow

I have a function whose output is properly typed but when I use that output as the next function's input, I am redefining the types. What is the recommended way for functions in a flow to share types?

If I send a lot of data to a webhook, the start of the job will be very late.

I tried to send 1000~3000 row data by webhook to windmill, however whenever I put lots of data in webhook, then flow job start was really rate, so timeout error was occured in client side. Is it a common issue or Do i use it in wrong way?
No description

Any changes to state trigger a refresh on one of my dropdown select component?

So this drop down select component is very important, and changing it's values triggers a lot of dependencies. But for some reason when I work with other components that work with my state, something somehow triggers the change in this dropdown to go back to default value. I've been trying to track what causes this but to no luck. I'm on V1.136.0...

Python 'AttributeError' for certain modules

Hi, Im trying to run a python script in Windmill's UI, but am getting an 'AttributeError' for certain packages such as numpy (example in screenshot). When I run print(numpy), I get the following: <module 'numpy' (<_frozen_importlib_external.NamespaceLoader object at 0x7f28c4de3750>)>. However, I was told by support that I should see the following: <module 'numpy' from '/tmp/windmill/cache/pip/numpy==1.26.1/numpy/__init__.py'>. Could this have something to do with my install/scripts? Would ap...
No description

Permission denied error with windmill and supabase

Hi everyone, I need some help with Windmill. I'm trying to deploy it on railway using the Dockerfile and connect it to a supabase database. The deployment works fine, but I get this error when I run it and logged in: Sql error: error returned from database: permission denied to set role "windmill_admin" Does anyone know what's causing this and how to fix it? Thanks in advance!...

Running "side effects" in flow / return early to (windmill) App

I'm having a use case that I think is not normal maybe, but not unheard of at least. But I'm not sure how to model it in windmill. I have a (windmill) app that runs a flow, the flow inserts into a database, and then it notifies about this a couple of places (slack, email). What I would like to achieve is to return a result o the user after I have inserted into the database, and then let the flow do slack and email afterwards. so the user do not need to wait on this result. The only way I see doing this now, would be to call another flow from the HTTP endpoint... but that feels a bit hacky since I now can't see the relation between the flows. ...