KJ
KJ
https://developers.cloudflare.com/ai-gateway/ 这个gateway也行
i "fixed" this by deleting the runtags ``` delete from run_tags rt where value = 'default_automation_condition_sensor' ```
actually not fixed
```sql SELECT runs.id, runs.run_body, runs.status, runs.create_timestamp, runs.update_timestamp, runs.start_time, runs.end_time FROM runs JOIN run_tags AS run_tags_filter0 ON runs.run_id = run_tags_filter0.run_id AND run_tags_filter0.key = 'dagster/sensor_name' AND run_tags_filter0.value = 'default_automation_condition_sensor' JOIN run_tags AS...
```dagster instance migrate``` for future people, i am able to fix the issue using the in built alembic
you can run that commend in any of the dagster component (webserver, daemon)
 I happened to be running this code, here is the input and expected output in my docker container
Im also facing this bug when i click a button to open a modal (/modal_export). it was working fine previously *edit, all my buttons that open a modal have this...
its actually a encoding issue. (Vietnamese in my case), just need to encode and decode the characters
```javascript const a = $("plant provider.Rows") const b = a.filter(x=>x.id == $("Field Value"))[0].name const c = encodeURI(b) console.log(c) return c ``` this is a frontend error, ntg to do with...