jippi/hashi-ui

Blank value in client Meta Properties causes key/value mismatch

Open

#454 opened on Aug 8, 2019

View on GitHub
 (2 comments) (0 reactions) (0 assignees)JavaScript (157 forks)batch import
bughelp wanted

Repository metrics

Stars
 (1,235 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

In my client nomad config, I have:

  "client": {
    "enabled": true,
    "max_kill_timeout": "10m",
    "meta": {
      "key_a": "value_a",
      "key_b": "value_b",
      "key_c": "",
      "key_d": "value_d",
      "key_e": "value_e"
    },

This results in the UI client page displaying:

Meta Properties
key_a: value_a
key_b: value_b
key_c: value_d
key_d: value_e
key_e: 

Contributor guide