Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Further increase GUI timeout to 60 seconds
  • Loading branch information
lafonj committed Mar 6, 2019
1 parent f135c28 commit 292dc88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/datasources/rest/modeldefs.rest.ts
Expand Up @@ -52,7 +52,7 @@ export class XosModeldefsService implements IXosModeldefsService {

public get(): IPromise<IXosModeldef[]> {
const d = this.$q.defer();
this.$http.get(`${this.AppConfig.apiEndpoint}/modeldefs`, {timeout: 30 * 1000})
this.$http.get(`${this.AppConfig.apiEndpoint}/modeldefs`, {timeout: 60 * 1000})
.then((res: any) => {
d.resolve(res.data.items);
})
Expand Down

0 comments on commit 292dc88

Please sign in to comment.