Skip to content

Commit b3e4362

Browse files
authored
Merge pull request #541 from mulesoft/CONSOLE-285
CONSOLE-285: endless spin fix
2 parents 0f2ad8c + 708aefe commit b3e4362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/directives/sidebar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@
522522
authStrategy.authenticate().then(function(token) {
523523
token.sign(request);
524524
$scope.requestOptions = request.toOptions();
525-
jQuery.ajax(request.toOptions()).then(
525+
jQuery.ajax(Object.assign(request.toOptions(),{timeout:10000})).then(
526526
function(data, textStatus, jqXhr) { handleResponse(jqXhr); },
527527
function(jqXhr) { handleResponse(jqXhr); }
528528
);

0 commit comments

Comments
 (0)