James Bulmer

Results 12 comments of James Bulmer

I have some work ongoing for it in the background, will start pushing it into a branch a little later today

I have the same issue with a brand new Cortex 3.1.0 and Elasticsearch 7.10.2 installation, Cortex fails to create index cortex_4 when the migrations are run. logs: https://pastebin.com/LCiprJ1y

So Cortex is trying to execute the following: ```{ "settings": { "index": { "number_of_shards": 5, "number_of_replicas": 0, "mapping.nested_fields.limit": 100 } }, "mappings": { "doc": { "date_detection": false, "numeric_detection": false, "properties":...

Looks like mapping is deprecated, I think this is causing the above problem: https://github.com/sksamuel/elastic4s/blob/master/elastic4s-core/src/main/scala/com/sksamuel/elastic4s/requests/indexes/CreateIndexApi.scala#L30 Mapping is being called by elastic4play, I'm surprised this has not caused trouble in thehive? Edit:...

Leaving some notes on how I hooked up Tailwind v4 alpha 10 to Bazel. You will need to add a pnpm dependency for both @tailwindcss/cli and tailwindcss. Bazel needs to...

You can wrap the file when using iofs to support templating ``` type templateFile struct { data any fs.File } func (t *templateFile) Read(p []byte) (int, error) { _, err...

FYI, our solution was to use the packaged release from Github and not the one on NPM, hope it helps

I did some research into how this is handled in the systems electron package and this is what I found: ``` #!/usr/bin/bash set -euo pipefail name=electron flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/${name}-flags.conf" declare -a flags...

Working from the information posted by alex and reaper: ```bash apk add gcompat aspnetcore6-runtime ./bin/Runner.Listener configure ./run.sh ``` I also required the following for my pipelines to do any valuable...