Skip to content

Conversation

@M0rdecay
Copy link
Contributor

@M0rdecay M0rdecay commented Jan 9, 2026

changelog - https://github.com/toml-lang/toml/blob/main/CHANGELOG.md

An inline tables now can be written in multiple lines! Like this:

[[inputs]]
  [inputs.rabbitmq]
    brokers         = [ "amqp://localhost:5672" ]
    username        = "user"
    password        = "bitnami"
    prefetch_count  = 10
    max_undelivered = 10
    [[inputs.rabbitmq.exchanges]]
      name         = "neptunus.events.pipeline"
      type         = "fanout"
      auto_delete  = true
      declare_args = { # <- THIS!!!!!!!
        "x-message-ttl" = 60000, 
        "x-max-length" = 10 
      }
    [[inputs.rabbitmq.queues]]
      name         = "neptunus.events.pipeline"
      auto_delete  = true
      [[inputs.rabbitmq.queues.bindings]]
        bind_to     = "neptunus.events.pipeline"
        binding_key = "#"
  [inputs.rabbitmq.parser]
    type = "json"

@M0rdecay M0rdecay merged commit b36b074 into main Jan 9, 2026
1 check passed
@M0rdecay M0rdecay deleted the improvement/toml-v1.1-update branch January 9, 2026 16:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants