Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ligato/vpp-agent
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.5.1
Choose a base ref
...
head repository: ligato/vpp-agent
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.5.2
Choose a head ref
  • 8 commits
  • 5 files changed
  • 2 contributors

Commits on Jul 23, 2018

  1. Fix setting telemetry update period to default

    - previously if not config file was not found, the update period was
      never set to default and the reading was done continuously (without sleep)
    - now the default will be always set even without any config file
    - this also defines minimum allowed update period to be >=5 seconds
    
    Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
    ondrej-fabry committed Jul 23, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f660091 View commit details
  2. Fix closing the GoVPP channel and update loop in Telemetry

    Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
    ondrej-fabry committed Jul 23, 2018
    Copy the full SHA
    a297e1c View commit details
  3. Fix typo

    Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
    ondrej-fabry committed Jul 23, 2018
    Copy the full SHA
    282e7c8 View commit details
  4. v1.5.2 changelog

    Signed-off-by: Vladimir Lavor <vlavor@cisco.com>
    VladoLavor committed Jul 23, 2018
    Copy the full SHA
    d5eff7e View commit details
  5. cn infra v1.4.1

    Signed-off-by: Vladimir Lavor <vlavor@cisco.com>
    VladoLavor committed Jul 23, 2018
    Copy the full SHA
    3b0501a View commit details
  6. Merge pull request #757 from ondrej-fabry/fix-telemetry-period

    Fix setting telemetry update period to default and closing
    VladoLavor authored Jul 23, 2018
    Copy the full SHA
    366dea1 View commit details
  7. Copy the full SHA
    19109ed View commit details
  8. Merge pull request #758 from VladoLavor/release-1.5.2

    v1.5.2 changelog + cn-infra 1.4.1
    ondrej-fabry authored Jul 23, 2018
    Copy the full SHA
    bb291ff View commit details
Showing with 210 additions and 162 deletions.
  1. +14 −0 CHANGELOG.md
  2. +3 −3 Gopkg.lock
  3. +1 −1 Gopkg.toml
  4. +170 −145 plugins/telemetry/telemetry.go
  5. +22 −13 vendor/github.com/ligato/cn-infra/db/keyval/consul/consul.go
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# Release v1.5.2 (2018-07-23)

## Compatibility
- VPP 18.07-rc0~358-ga5ee900
- cn-infra v1.4.1 (minor version fixes bug in Consul)

## Bugfix
- [Telemetry](plugins/telemetry)
* Fixed bug where lack of config file could cause continuous polling. The interval now also
cannot be changed to value less than 5 seconds.
* Telemetry plugin is now closed properly

# Release v1.5.1 (2018-07-20)

## Compatibility
- VPP 18.07-rc0~358-ga5ee900
- cn-infra v1.4

6 changes: 3 additions & 3 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ required = [

[[constraint]]
name = "github.com/ligato/cn-infra"
version = "1.4"
version = "1.4.1"

[[constraint]]
branch = "master"
Loading