Skip to content

Commit

Permalink
fixed server mode start
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyashtrikul committed Jan 21, 2021
1 parent f2ebd85 commit f263d30
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]


## [2.1.3] - 2021-01-21
- Fixed server mode startup

## [2.1.0] - 2021-01-18

- Removed deprecations from 2.0.X
Expand Down Expand Up @@ -69,7 +73,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## 1.0.0 - 2020-09-28

[Unreleased]: https://github.com/vseinstrumentiru/lego/compare/v2.1.0...HEAD
[Unreleased]: https://github.com/vseinstrumentiru/lego/compare/v2.1.3...HEAD
[2.1.3]: https://github.com/vseinstrumentiru/lego/compare/v2.1.0...v2.1.3
[2.1.0]: https://github.com/vseinstrumentiru/lego/compare/v2.0.10...v2.1.0

[2.0.10]: https://github.com/vseinstrumentiru/lego/compare/v2.0.8.1...v2.0.10
Expand Down
2 changes: 1 addition & 1 deletion internal/provide/all.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ func All(runtime config.Runtime) []interface{} {

res = append(res, Minimal()...)

if runtime.Not(config.ServerMode) {
if runtime.Is(config.ServerMode) {
res = append(res, Monitoring()...)
res = append(res, Pipeline()...)
}
Expand Down

0 comments on commit f263d30

Please sign in to comment.