mirror of https://github.com/hashicorp/consul
fix: NET-1521 show latest config in /v1/agent/self (#18681)
* fix: NET-1521 show latest config in /v1/agent/selfpull/18712/head
parent
2e7d951086
commit
56d6e54ac7
@ -0,0 +1,3 @@
|
||||
```release-note:bug
|
||||
api: Fix `/v1/agent/self` not returning latest configuration
|
||||
```
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
# Copyright (c) HashiCorp, Inc.
|
||||
# SPDX-License-Identifier: BUSL-1.1
|
||||
|
||||
readonly PACKAGE_DIR="$(dirname "${BASH_SOURCE[0]}")"
|
||||
cd $PACKAGE_DIR
|
||||
|
||||
# Uses: https://github.com/globusdigital/deep-copy
|
||||
deep-copy \
|
||||
-pointer-receiver \
|
||||
-o ./config.deepcopy.go \
|
||||
-type RuntimeConfig \
|
||||
./
|
Loading…
Reference in new issue