dobarx

Results 13 comments of dobarx

V8 isolate is never closed: https://github.com/livebud/bud/blob/bff7b1fac6e69bacdabf524376ee564c6fdd2cb9/package/js/v8/v8.go#L17

Also, if reusing isolates, value should be released after Eval. This could also leak memory. New v8go release has: ```go defer value.Release() ``` I've had a similar problem on [experiment...

@traut What about separating namespace with prefix `import..`? Usage: ```hcl document "my-doc" { section ref { base = import.fabric_templates.section.ctid_executive_summary } ``` We could also choose different prefix like `template..` or...

Shouldn't this be outside of the content block? Like using something like `dynamic` block with a condition when to render content.

@traut What if we added a child block type for all `content` blocks? Something like: ```hcl content table { query = "..." ... empty_result { content text { value =...

`on_empty`? Could also extend in the future with fallbacks for errors `on_error`.

> When it happens are the three targets of the load balancer healthy? Seems like all of them are healthy. But I see 6, not 3 targets.

I think this might be the problem with cluster name. Other nodes got automatically included because they contains word `master-k3s` from the cluster name prefix. Edit: Changing the cluster name...

> Hmm, that's odd. It picks the masters by checking the labels, not the node names. Let's leave this open for now so I can double-check it when I get...

I think this plugin is duplicate of `content text`. We can use: ```hcl content text { format_as = "code" code_language = "mermaid" text = C; B-->D; C-->D; EOT } ```...