Skip to content

Commit 5427e03

Browse files
authored
Fix/2045 (#2048)
* Fixes #2045 * Fix version * Fix health check command * Formatting
1 parent d00a252 commit 5427e03

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

conf/release.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ COPY ./LICENSE .
2828
COPY ./sonar/audit sonar/audit
2929

3030
RUN pip install --upgrade pip \
31-
&& pip install sonar-tools==3.16.2
31+
&& pip install sonar-tools==3.17
3232

3333
USER ${USERNAME}
3434
WORKDIR /home/${USERNAME}
3535

36-
HEALTHCHECK --interval=180s --timeout=5s CMD [ "sonar-tools" ]
36+
HEALTHCHECK --interval=180s --timeout=5s CMD [ "sonar-tools-help" ]
3737

38-
CMD [ "sonar-tools" ]
38+
CMD [ "sonar-tools-help" ]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sonar-tools"
3-
version = "3.16.2"
3+
version = "3.17"
44
description = "A collection of utility tools for the SonarQube ecosystem"
55
authors = [
66
{name = "Olivier Korach", email = "[email protected]"},
@@ -31,7 +31,7 @@ classifiers = [
3131
"Development Status :: 5 - Production/Stable",
3232
# Indicate who your project is intended for
3333
"Intended Audience :: Developers",
34-
"Topic :: Code Quality :: Utility Tools",
34+
"Topic :: Software Development :: Quality Assurance",
3535
# Specify the Python versions you support here.
3636
"Programming Language :: Python :: 3",
3737
"Programming Language :: Python :: 3.8",

sonar/util/project_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1919
#
2020

21-
""" Project utility functions """
21+
"""Project utility functions"""
2222

2323
import math
2424
from sonar import logging as log

0 commit comments

Comments
 (0)