Jaime Ramírez
2020-06-18 a380a59ec11502725b79b2073822d95f0b1a7ab2
fix(adopt-a-pup): Increase timeout (#60)

We don't want to cause problems with the delays introduced by Istio
2 files modified
4 ■■■■ changed files
adopt-a-pup/web-app/src/Services/AdoptionRESTService.test.ts 2 ●●● patch | view | raw | blame | history
adopt-a-pup/web-app/src/Services/RESTService.ts 2 ●●● patch | view | raw | blame | history
adopt-a-pup/web-app/src/Services/AdoptionRESTService.test.ts
@@ -46,7 +46,7 @@
                ownOtherAnimals: false,
            },
            {
                timeout: 3000
                timeout: 10000
            }
        );
    });
adopt-a-pup/web-app/src/Services/RESTService.ts
@@ -9,7 +9,7 @@
    constructor(
        baseURL: string,
        private readonly remoteServiceName: string,
        private readonly timeoutMs = 3000
        private readonly timeoutMs = 10000
    ) {
        this.axiosInstance = Axios.create({ baseURL });
    }