Skip to content

Commit

Permalink
Merge pull request #112 from idealista/develop
Browse files Browse the repository at this point in the history
Fix gunicorn logrotate kill command path
  • Loading branch information
ultraheroe authored Feb 1, 2022
2 parents 1ed6482 + de68fd2 commit e82a289
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch

<!-- [Full Changelog](https://github.com/idealista/airflow-role/compare/2.0.1...bugfix/wrong-task-handler) -->

## [2.0.4](https://github.com/idealista/airflow-role/tree/2.0.4)

[Full Changelog](https://github.com/idealista/airflow-role/compare/2.0.3...2.0.4)

### Fixed
- Wrong webserver.pid path in template gunicorn-logrotate.j2 [#110](https://github.com/idealista/airflow-role/issues/110) @ginolegigot

## [2.0.3](https://github.com/idealista/airflow-role/tree/2.0.3)

[Full Changelog](https://github.com/idealista/airflow-role/compare/2.0.2...2.0.3)
Expand Down Expand Up @@ -41,7 +48,7 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch
### Changed

- :arrows_clockwise: Update missing vars in cfg (v2) template
- :arrows_clockwise: Update conditionally vars missing or unnecesary in cfg (v2) template
- :arrows_clockwise: Update conditionally vars missing or unnecessary in cfg (v2) template

### Fixed

Expand All @@ -51,7 +58,7 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch
### Added

- :heavy_plus_sign: tags for config files related
- :broom: Clean airflow-cfg.yml with bad format values and unnecesary quotation
- :broom: Clean airflow-cfg.yml with bad format values and unnecessary quotation

## [2.0.0](https://github.com/idealista/airflow-role/tree/2.0.0)

Expand Down
2 changes: 1 addition & 1 deletion templates/gunicorn-logrotate.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
create 644 {{ airflow_user }} {{ airflow_group }}
sharedscripts
postrotate
[ -f {{ airflow_pidfile_folder }}-webserver/webserver.pid ] && kill -USR1 `cat {{ airflow_pidfile_folder }}/webserver.pid`
[ -f {{ airflow_pidfile_folder }}-webserver/webserver.pid ] && kill -USR1 `cat {{ airflow_pidfile_folder }}-webserver/webserver.pid`
endscript
}

0 comments on commit e82a289

Please sign in to comment.