This commit is contained in:
matsievskyav
2015-07-20 07:41:18 +03:00
parent cd2ff6b40e
commit bde9f6cbdc
+1 -1
View File
@@ -330,7 +330,7 @@ function Errors() {
return Bacon.retry({
source: () => ajaxCall(url),
retries: 5,
isRetryable: error => error.status !== 404,
isRetryable: (error:JQueryXHR) => error.status !== 404,
delay: context => 100 // Just use the same delay always
});
});