Wilhelm Van Der Walt
Wilhelm Van Der Walt
Hey guys. Can this be merged. Really need the graphql highlight.
https://github.com/typesense/typesense/assets/8058892/baae7eba-c94d-497b-8bb6-bee929edb733
@suninuni How did you remove the `node` label. Are you using a custom build of apisix?
I fixed this by adding the following `module_hook` ```lua local apisix = require("apisix") local old_http_init = apisix.http_init apisix.http_init = function (...) ngx.log(ngx.EMERG, "Module hooks loaded") old_http_init(...) end local exporter =...
OMG @jmmckenz . This worked for me on Dell Optiplex 7050. I was banging my head until I found this thread. 🙏
I ended up resolving this by just protecting my resources with `iam` on `aws`. For me I wanted to prevent our user pool from being deleted. ```hcl resource "aws_iam_policy" "prevent_user_pool_deletion"...