Skip to content

Commit 2fe1270

Browse files
Merge pull request #32 from DataKitchen/release/2.7.4
Release/2.7.4
2 parents 184078b + 51de986 commit 2fe1270

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

deploy/charts/observability-app/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: dataops-observability-app
33
type: application
44
appVersion: "2.x.x"
5-
version: "2.3.0"
5+
version: "2.3.1"
66

77
description: DataOps Observability
88
home: https://datakitchen.io

deploy/charts/observability-app/templates/observability-ui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ spec:
6262
- name: OBSERVABILITY_API_HOSTNAME
6363
value: {{ tpl .Values.observability_api.hostname . | quote }}
6464
{{- end }}
65-
{{- if .Values.observability_ui.csp_extra }}
65+
{{- if not (quote .Values.observability_ui.csp_extra | empty) }}
6666
- name: OBSERVABILITY_CSP_EXTRA
6767
value: {{ tpl .Values.observability_ui.csp_extra . | quote }}
6868
{{- end }}

observability_ui/libs/core/src/lib/services/auth/session.service.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ describe('Session Service', () => {
8080
it('should set the token into the cookies', () => {
8181
const token = 'my-test-token';
8282
sessionService.setToken(token);
83-
expect(cookieService.set).toBeCalledWith(cookieKeys.token, token, { path: cookiePath, secure: true });
83+
expect(cookieService.set).toBeCalledWith(cookieKeys.token, token, { path: cookiePath });
8484
});
8585
});
8686

observability_ui/libs/core/src/lib/services/auth/session.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class SessionService {
4949
}
5050

5151
setToken(token: string): void {
52-
this.cookieService.set(cookieKeys.token, token, { path: cookiePath, secure: true });
52+
this.cookieService.set(cookieKeys.token, token, { path: cookiePath });
5353
}
5454

5555
removeToken(): void {

0 commit comments

Comments
 (0)