Connect release 25th May 2023 #5

Merged
k.triantafyllou merged 6 commits from develop into master 2023-05-25 16:10:42 +02:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 39a7ed58be - Show all commits

View File

@ -36,7 +36,7 @@ export class HttpInterceptorService implements HttpInterceptor {
} else {
if (isPlatformServer(this.platformId)) {
let headers = new HttpHeaders();
if(request.withCredentials && (properties.dashboard !== 'connect' || properties.environment !== 'production')) {
if(request.withCredentials && !properties.hasMachineCache) {
headers = headers.set('Cookie', this.req.get('Cookie'));
}
const authReq = request.clone({

View File

@ -144,4 +144,5 @@ export interface EnvProperties {
connectPortalUrl?;
eoscDataTransferAPI?;
eoscDataTransferDestinations?;
hasMachineCache?: boolean;
}