Skip to content

Commit b04d6fb

Browse files
committed
DESIGNER-2750 remove timeout of try it
1 parent ff452e2 commit b04d6fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/scripts/api-console.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2920,7 +2920,7 @@
29202920
authStrategy.authenticate().then(function(token) {
29212921
token.sign(request);
29222922
$scope.requestOptions = request.toOptions();
2923-
jQuery.ajax(Object.assign(request.toOptions(),{timeout:10000})).then(
2923+
jQuery.ajax(request.toOptions()).then(
29242924
function(data, textStatus, jqXhr) { handleResponse(jqXhr); },
29252925
function(jqXhr) { handleResponse(jqXhr); }
29262926
);

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(Object.assign(request.toOptions(),{timeout:10000})).then(
525+
jQuery.ajax(request.toOptions()).then(
526526
function(data, textStatus, jqXhr) { handleResponse(jqXhr); },
527527
function(jqXhr) { handleResponse(jqXhr); }
528528
);

0 commit comments

Comments
 (0)