Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ETCD-199: bump etcd v3.4.16 #83

Merged
merged 85 commits into from
Jun 18, 2021

Commits on Sep 16, 2019

  1. etcdserver: Fix PeerURL validation

    In case of URLs that are synonyms, the current lexicographic sorting
    and compare of the URLs fails with frustrating errors. Make sure to do
    a full comparison between every set of PeerURLs before failing.
    
    Fixes etcd-io#11013
    dbavatar committed Sep 16, 2019
    Configuration menu
    Copy the full SHA
    3b8f812 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2020

  1. pkg/fileutil: fix F_OFD_ constants

    Use golang.org/x/sys/unix for F_OFD_* constants.
    
    This fixes the issue that F_OFD_GETLK was defined incorrectly,
    resulting in bugs such as moby/moby#31182
    
    Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
    kolyshkin committed Dec 14, 2020
    Configuration menu
    Copy the full SHA
    bea35fd View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2021

  1. Merge pull request etcd-io#12551 from kolyshkin/3.4-fix-lock

    [3.4 backport] pkg/fileutil: fix F_OFD_ constants
    ptabor committed Jan 15, 2021
    Configuration menu
    Copy the full SHA
    0880605 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2021

  1. vendor: bump gorilla/websocket

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jan 23, 2021
    Configuration menu
    Copy the full SHA
    becc228 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12645 from hexfusion/bump-dep

    vendor: bump gorilla/websocket
    hexfusion committed Jan 23, 2021
    Configuration menu
    Copy the full SHA
    d51c6c6 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2021

  1. etcdserver: Fix 64 KB websocket notification message limit

    This fixes etcd being unable to send any message longer than 64 KB as
    a notification over the websocket. This was because the older version
    of grpc-websocket-proxy was used and WithMaxRespBodyBufferSize option
    wasn't set.
    vitalif committed Jan 29, 2021
    Configuration menu
    Copy the full SHA
    a40f14d View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2021

  1. Merge pull request etcd-io#12402 from vitalif/release-3.4

    etcdserver: Fix 64 KB websocket notification message limit
    ptabor committed Feb 3, 2021
    Configuration menu
    Copy the full SHA
    a1c5f59 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2021

  1. [Backport-3.4] etcdserver/api/etcdhttp: log successful etcd server si…

    …de health check in debug level
    
    ref. etcd-io#12677
    ref. etcd-io@0b9cfa8
    chaochn47 committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    f27ef4d View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12679 from chaochn47/backport_3.4_#12677

    [Backport-3.4] etcdserver/api/etcdhttp: log successful etcd server side health check in debug level
    gyuho committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    3be9460 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2021

  1. version: 3.4.15

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    aa71268 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2021

  1. server: Added config parameter experimental-warning-apply-duration

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Mar 3, 2021
    Configuration menu
    Copy the full SHA
    9aeabe4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12740 from hexfusion/cp-12448--release-3.4

    Manual cherry pick of etcd-io#12448 on release 3.4
    hexfusion committed Mar 3, 2021
    Configuration menu
    Copy the full SHA
    afd6d8a View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2021

  1. etcdserver: when using --unsafe-no-fsync write data

    There are situations where we don't wish to fsync but we do want to
    write the data.
    
    Typically this occurs in clusters where fsync latency (often the
    result of firmware) transiently spikes.  For Kubernetes clusters this
    causes (many) elections which have knock-on effects such that the API
    server will transiently fail causing other components fail in turn.
    
    By writing the data (buffered and asynchronously flushed, so in most
    situations the write is fast) and avoiding the fsync we no longer
    trigger this situation and opportunistically write out the data.
    
    Anecdotally:
      Because the fsync is missing there is the argument that certain
      types of failure events will cause data corruption or loss, in
      testing this wasn't seen.  If this was to occur the expectation is
      the member can be readded to a cluster or worst-case restored from a
      robust persisted snapshot.
    
      The etcd members are deployed across isolated racks with different
      power feeds.  An instantaneous failure of all of them simultaneously
      is unlikely.
    
      Testing was usually of the form:
       * create (Kubernetes) etcd write-churn by creating replicasets of
         some 1000s of pods
       * break/fail the leader
    
      Failure testing included:
       * hard node power-off events
       * disk removal
       * orderly reboots/shutdown
    
      In all cases when the node recovered it was able to rejoin the
      cluster and synchronize.
    cwedgwood committed Mar 5, 2021
    Configuration menu
    Copy the full SHA
    94634fc View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2021

  1. Merge pull request etcd-io#12751 from cwedgwood/nofsyncdowrite

    When using --unsafe-no-fsync still write out the data
    ptabor committed Mar 7, 2021
    Configuration menu
    Copy the full SHA
    2702f9e View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2021

  1. integration: relax leader timeout from 3s to 4s

    The integration jobs fail with timeouts slightly over 3s, increase
    this marginally so false failures are less prevalent.
    cwedgwood committed Mar 29, 2021
    Configuration menu
    Copy the full SHA
    c499d9b View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2021

  1. Merge pull request etcd-io#12816 from cwedgwood/3.4-relax-gate-timeout

    integration: relax leader timeout from 3s to 4s
    ptabor committed Mar 30, 2021
    Configuration menu
    Copy the full SHA
    16fe9a8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12815 from dbavatar/release-3.4-peervalida…

    …tion
    
    etcdserver: Fix PeerURL validation
    ptabor committed Mar 30, 2021
    Configuration menu
    Copy the full SHA
    30799c9 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2021

  1. etcdserver: fix incorrect metrics generated when clients cancel watches

    Manual cherry-pick of 9571325 for
    release-3.4.
    cwedgwood committed Apr 1, 2021
    Configuration menu
    Copy the full SHA
    656dc63 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12803 from cwedgwood/metrics-3.4

    etcdserver: fix incorrect metrics generated when clients cancel watches
    hexfusion committed Apr 1, 2021
    Configuration menu
    Copy the full SHA
    82eae92 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2021

  1. go.mod: Pin go to 1.12 version

    As go 1.12.2 is what is tested in CI as well as recommended to be built
    with 1.12.2 we should also pin to this in the go directive version.
    lilic committed Apr 7, 2021
    Configuration menu
    Copy the full SHA
    ef415e3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8557cb2 View commit details
    Browse the repository at this point in the history
  3. vendor: Run go mod vendor

    lilic committed Apr 7, 2021
    Configuration menu
    Copy the full SHA
    b19eb0f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    91bed2e View commit details
    Browse the repository at this point in the history
  5. Merge pull request etcd-io#12839 from lilic/fix-go-version

    [release-3.4]: Pin go version in go.mod to 1.12
    ptabor committed Apr 7, 2021
    Configuration menu
    Copy the full SHA
    b7e5f5b View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2021

  1. .travis.yml: Test with go v1.15.11

    Currently in CI the tests are only run with go v1.12, this adds also go
    v1.15.11.
    
    Excludes certain variants for v1.15.
    lilic committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    62596fa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    35bd924 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0b7e418 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cfc08e5 View commit details
    Browse the repository at this point in the history
  5. go.mod,go.sum: Bump github.com/creack/pty that includes patch

    This patch is needed due to go 1.15 erroring on:
    
    "Setctty set but Ctty not valid in child".
    lilic committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    4276c33 View commit details
    Browse the repository at this point in the history
  6. vendor: Run go mod vendor

    lilic committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    eeefd61 View commit details
    Browse the repository at this point in the history
  7. integration : fix TestTLSClientCipherSuitesMismatch in go1.13

    In go1.13, the TLS13 is enablled by default, and as per go1.13 release notes :
    TLS 1.3 cipher suites are not configurable. All supported cipher suites are safe,
    and if PreferServerCipherSuites is set in Config the preference order is based
    on the available hardware.
    
    Fixing the test case for go1.13 by limiting the TLS version to TLS12
    vimalk78 authored and lilic committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    df35086 View commit details
    Browse the repository at this point in the history
  8. .travis,test: Turn race off in Travis for go version 1.15

    Currently with race it fails, we can enable this at a later point.
    lilic committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    a1691be View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    85e037d View commit details
    Browse the repository at this point in the history
  10. Fix pkg/tlsutil (test) to not fail on 386.

    In fact this commit rewrites the functionality to use upstream list of
    ciphers instead of checking whether the lists are in sync using ast
    analysis.
    ptabor authored and lilic committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    c3f447a View commit details
    Browse the repository at this point in the history
  11. pkg/tlsutil: Adjust cipher suites for go 1.12

    Cherry-pick of 60e4428 from master branch does not work due to
    missing `tls.CipherSuites()` function. We work around by using go build
    tags for both the building and tests.
    lilic committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    8d1b833 View commit details
    Browse the repository at this point in the history
  12. integration: Fix 'go test --tags cluster_proxy --timeout=30m -v ./int…

    …egration/...'
    
    grpc proxy opens additional 2 watching channels. The metric is shared
    between etcd-server & grpc_proxy, so all assertions on number of open
    watch channels need to take in consideration the additional "2"
    channels.
    ptabor authored and lilic committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    276ee96 View commit details
    Browse the repository at this point in the history
  13. Merge pull request etcd-io#12849 from lilic/test-go-1-15

    [release-3.4]: .travis.yml: Test with go v1.15.11
    ptabor committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    c274aa5 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2021

  1. .travis,Makefile,functional: Bump go 1.12 version to v1.12.17

    This version was already used to build the release v3.4.15.
    lilic committed Apr 20, 2021
    Configuration menu
    Copy the full SHA
    5890bc8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12882 from lilic/bump-go-12

    .travis,Makefile,functional: Bump go 1.12 version to v1.12.17
    ptabor committed Apr 20, 2021
    Configuration menu
    Copy the full SHA
    ceafa1b View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2021

  1. Configuration menu
    Copy the full SHA
    c4eb81a View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12888 from chaochn47/2021-04-22-cherry-pic…

    …k-12871
    
    Backport-3.4 etcdserver/util.go: reduce memory when logging range requests
    ptabor committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    ba82904 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2021

  1. etcdserver/mvcc: update trace.Step condition

    backport PR etcd-io#12894 to release-3.4
    MakDon committed Apr 28, 2021
    Configuration menu
    Copy the full SHA
    963d3b9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12902 from MakDon/release-3.4

    [Backport-3.4] etcdserver/mvcc: update trace.Step condition
    gyuho committed Apr 28, 2021
    Configuration menu
    Copy the full SHA
    15715dc View commit details
    Browse the repository at this point in the history

Commits on May 4, 2021

  1. Configuration menu
    Copy the full SHA
    dbde4f2 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2021

  1. Merge pull request etcd-io#12917 from chaochn47/2021-05-03-backport-#…

    …12880
    
    Backport-3.4 exclude alarms from health check conditionally
    ptabor committed May 6, 2021
    Configuration menu
    Copy the full SHA
    6bbc858 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2021

  1. version: 3.4.16

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed May 12, 2021
    Configuration menu
    Copy the full SHA
    d19fbe5 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2021

  1. UPSTREAM: <drop>: pkg, clientv3, etcdmain: let grpcproxy rise an erro…

    …r when its cert has non empty CN
    
    CARRY:
    
    This patch is required to allow metrics cert to auth with CN in cert.
    
    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    c61959a View commit details
    Browse the repository at this point in the history
  2. UPSTREAM: <drop>: go.mod: go 1.14

    CARRY:
    
    During the release of 3.4.9 gyuho bumped go.mod to 1.14. Since the release is expected to use 1.12 we will not keep the commit.
    
    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    dee5455 View commit details
    Browse the repository at this point in the history
  3. UPSTREAM: <drop>: Backport-3.4 exclude alarms from health check condi…

    …tionally"
    
    This reverts commit dbde4f2.
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    5b860f4 View commit details
    Browse the repository at this point in the history
  4. UPSTREAM: <drop> [Backport-3.4] etcdserver/api/etcdhttp: log successf…

    …ul etcd server side health check in debug level
    
    This reverts commit f27ef4d.
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    8c241a8 View commit details
    Browse the repository at this point in the history
  5. UPSTREAM: <drop>: go.mod,go.sum: Comply with go v1.15

    This reverts commit cfc08e5.
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    4393387 View commit details
    Browse the repository at this point in the history
  6. DOWNSTREAM: <drop>: *: tidy"

    This reverts commit b60e76b.
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    3b92125 View commit details
    Browse the repository at this point in the history
  7. DOWNSTREAM: <drop>: vendor: tidy

    This reverts commit 0e2dafd.
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    dca24d2 View commit details
    Browse the repository at this point in the history
  8. DOWNSTREAM: <carry>: version: openshift-v4.0

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    8aa68eb View commit details
    Browse the repository at this point in the history
  9. DOWNSTREAM: <carry>: Dockerfile: add etcdctl

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    3e84f17 View commit details
    Browse the repository at this point in the history
  10. DOWNSTREAM: <carry>: Dockerfile.*: Fix "etcd is distributed" -> "etcd…

    … is a distributed"
    
    Correcting a typo from 2f10964 (version: openshift-v4.0, 2018-11-29).
    wking authored and hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    9a2013e View commit details
    Browse the repository at this point in the history
  11. DOWNSTREAM: <carry> Dockerfile: resolve issue where binary was not pr…

    …operly copied from build.
    
    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    f1bbacb View commit details
    Browse the repository at this point in the history
  12. DOWNSTREAM: <carry>: OWNERS: add

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    70bfd8e View commit details
    Browse the repository at this point in the history
  13. DOWNSTREAM: <carry> Dockerfile: set coreos org as canonical for relea…

    …se-3.3
    
    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    16caa03 View commit details
    Browse the repository at this point in the history
  14. DOWNSTREAM: <carry>: Dockerfile: use build instead of make build

    make build performs a sanity test on the binary image which causes problems for unsupport arch. Because we run full CI tests against the image this check is not nessisary and will allow images to be build regardless of arch.
    
    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    c5bdc17 View commit details
    Browse the repository at this point in the history
  15. DOWNSTREAM: <carry>: Dockerfile: bump golang 1.12

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    749d588 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    6e97204 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    2982541 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    07df352 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    d0a16b2 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    7712f19 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    5a5e94b View commit details
    Browse the repository at this point in the history
  22. DOWNSTREAM: <carry>: If we weren't able to get client or get target m…

    …ember but memberDir exists, go ahead and start.
    retroflexer authored and hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    511f3c3 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    5763586 View commit details
    Browse the repository at this point in the history
  24. DOWNSTREAM: <carry>: *: migrate openshift assets to new etcd org

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    a94f8fb View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    33b23c3 View commit details
    Browse the repository at this point in the history
  26. DOWNSTREAM: <carry>: discover-etcd-initial-cluster: improve error han…

    …dling when we dont scale member
    
    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    c0a35ab View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    de54531 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    c390140 View commit details
    Browse the repository at this point in the history
  29. DOWNSTREAM: <carry>: OWNERS: add component

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    97d2caf View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    fc19257 View commit details
    Browse the repository at this point in the history
  31. UPSTREAM: <carry>: *: add support for socket options

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    0e41f96 View commit details
    Browse the repository at this point in the history
  32. DOWNSTREAM: <carry>: openshift-tools: fix on off flow and add unit tests

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    a4d6537 View commit details
    Browse the repository at this point in the history
  33. UPSTREAM: <carry>: *: ensure zap logger is set before use

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    c235e61 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    490e5c6 View commit details
    Browse the repository at this point in the history
  35. UPSTREAM: <carry>: *: log server-side /health checks

    To make it easier to root-cause when /health check fails.
    For example, we are using load balancer to health check
    each etcd instance, and when one etcd node gets terminated,
    it's hard to tell whether etcd "server" was really failing
    or client (or load balancer") failed to reach the etcd cluster
    which is also failure in load balancer health check.
    
    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho authored and hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    903967e View commit details
    Browse the repository at this point in the history
  36. UPSTREAM: <carry>: etcdserver/api/etcdhttp: log successful etcd serve…

    …r side health check in
    
    debug level
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    b10b841 View commit details
    Browse the repository at this point in the history
  37. DOWNSTREAM: <carry>: discover-etcd-initial-cluster: retry if member i…

    …s not part of member list and dataDir exists
    
    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    4312a12 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    162058e View commit details
    Browse the repository at this point in the history
  39. DOWNSTREAM: <carry>: vendor: tidy

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    0956f6d View commit details
    Browse the repository at this point in the history