Skip to content

Commit

Permalink
Merge pull request #11582 from smartcontractkit/release/2.7.2
Browse files Browse the repository at this point in the history
release/2.7.2 -> master
  • Loading branch information
snehaagni committed Jan 5, 2024
2 parents d78fde1 + 3cf93c9 commit 0a3cece
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.1
2.7.2
4 changes: 3 additions & 1 deletion core/services/chainlink/application.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,9 @@ func NewApplication(opts ApplicationOpts) (Application, error) {
}

var peerWrapper *ocrcommon.SingletonPeerWrapper
if cfg.P2P().Enabled() {
if !cfg.OCR().Enabled() && !cfg.OCR2().Enabled() {
globalLogger.Debug("P2P stack not needed")
} else if cfg.P2P().Enabled() {
if err := ocrcommon.ValidatePeerWrapperConfig(cfg.P2P()); err != nil {
return nil, err
}
Expand Down
5 changes: 5 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
...

<!-- unreleasedstop -->
## 2.7.2 - 2023-12-14

### Fixed

- Fixed a bug that caused nodes without OCR or OCR2 enabled to fail config validation if `P2P.V2` was not explicitly disabled. With this fix, NOPs will not have to make changes to their config.

## 2.7.1 - 2023-11-21

Expand Down

0 comments on commit 0a3cece

Please sign in to comment.