Skip to content

Commit

Permalink
🐛 Fix probe type comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePooN committed Dec 24, 2024
1 parent 4377549 commit 77ac70e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion osu/osu-web/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2024.1224.0
version: 2024.1224.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 2 additions & 2 deletions osu/osu-web/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -463,10 +463,10 @@ If the input host is REPLACE_BY_APP_URL, will urlparse defaultHost and return it
{{- if and (eq .probeType "httpGet") (.httpGet) }}
httpGet:
{{- toYaml .httpGet | nindent 4 }}
{{- else if and (eq .probeType "httpGet") (.tcpSocket) }}
{{- else if and (eq .probeType "tcpSocket") (.tcpSocket) }}
tcpSocket:
{{- toYaml .tcpSocket | nindent 4 }}
{{- else if and (eq .probeType "httpGet") (.exec) }}
{{- else if and (eq .probeType "exec") (.exec) }}
exec:
{{- toYaml .exec | nindent 4 }}
{{- end }}
Expand Down

0 comments on commit 77ac70e

Please sign in to comment.