mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-28 11:37:42 +01:00
Merge pull request #13175 from AllForNothing/504
Handle 504 error from backend
This commit is contained in:
commit
d5322c3d45
@ -1,5 +1,5 @@
|
|||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { HttpInterceptor, HttpRequest, HttpHandler, HttpResponse } from '@angular/common/http';
|
import { HttpInterceptor, HttpRequest, HttpHandler, HttpResponse, HttpErrorResponse } from '@angular/common/http';
|
||||||
import { Observable, throwError } from 'rxjs';
|
import { Observable, throwError } from 'rxjs';
|
||||||
import { catchError, tap } from 'rxjs/operators';
|
import { catchError, tap } from 'rxjs/operators';
|
||||||
|
|
||||||
@ -44,6 +44,14 @@ export class InterceptHttpService implements HttpInterceptor {
|
|||||||
}))
|
}))
|
||||||
.pipe(
|
.pipe(
|
||||||
catchError(error => {
|
catchError(error => {
|
||||||
|
// handle 504 error in document format from backend
|
||||||
|
if (error && error.status === 504) {
|
||||||
|
// throw 504 error in json format
|
||||||
|
return throwError(new HttpErrorResponse({
|
||||||
|
error: '504 gateway timeout',
|
||||||
|
status: 504
|
||||||
|
}));
|
||||||
|
}
|
||||||
if (error.status === 403) {
|
if (error.status === 403) {
|
||||||
const csrfToken = localStorage.getItem("__csrf");
|
const csrfToken = localStorage.getItem("__csrf");
|
||||||
if (csrfToken) {
|
if (csrfToken) {
|
||||||
|
Loading…
Reference in New Issue
Block a user