Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit a1f10de

Browse files
Fixing timeout with Issue #969
1 parent 72ec8cf commit a1f10de

File tree

48 files changed

+65
-65
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+65
-65
lines changed

dist/rx.all.compat.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10385,7 +10385,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
1038510385
timeoutDurationSelector = firstTimeout;
1038610386
firstTimeout = observableNever();
1038710387
}
10388-
other || (other = observableThrow(new TimeoutError()));
10388+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
1038910389
return new AnonymousObservable(function (o) {
1039010390
var subscription = new SerialDisposable(),
1039110391
timer = new SerialDisposable(),
@@ -10445,7 +10445,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
1044510445
}
1044610446
if (other instanceof Error) { other = observableThrow(other); }
1044710447
isScheduler(scheduler) || (scheduler = defaultScheduler);
10448-
10448+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
1044910449
return new AnonymousObservable(function (o) {
1045010450
var id = 0,
1045110451
original = new SingleAssignmentDisposable(),

dist/rx.all.compat.map

+1-1
Large diffs are not rendered by default.

dist/rx.all.compat.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10130,7 +10130,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
1013010130
timeoutDurationSelector = firstTimeout;
1013110131
firstTimeout = observableNever();
1013210132
}
10133-
other || (other = observableThrow(new TimeoutError()));
10133+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
1013410134
return new AnonymousObservable(function (o) {
1013510135
var subscription = new SerialDisposable(),
1013610136
timer = new SerialDisposable(),
@@ -10190,7 +10190,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
1019010190
}
1019110191
if (other instanceof Error) { other = observableThrow(other); }
1019210192
isScheduler(scheduler) || (scheduler = defaultScheduler);
10193-
10193+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
1019410194
return new AnonymousObservable(function (o) {
1019510195
var id = 0,
1019610196
original = new SingleAssignmentDisposable(),

dist/rx.all.map

+1-1
Large diffs are not rendered by default.

dist/rx.all.min.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.lite.compat.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6136,7 +6136,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
61366136
timeoutDurationSelector = firstTimeout;
61376137
firstTimeout = observableNever();
61386138
}
6139-
other || (other = observableThrow(new TimeoutError()));
6139+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
61406140
return new AnonymousObservable(function (o) {
61416141
var subscription = new SerialDisposable(),
61426142
timer = new SerialDisposable(),
@@ -6196,7 +6196,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
61966196
}
61976197
if (other instanceof Error) { other = observableThrow(other); }
61986198
isScheduler(scheduler) || (scheduler = defaultScheduler);
6199-
6199+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
62006200
return new AnonymousObservable(function (o) {
62016201
var id = 0,
62026202
original = new SingleAssignmentDisposable(),

dist/rx.lite.compat.map

+1-1
Large diffs are not rendered by default.

dist/rx.lite.compat.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.lite.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5794,7 +5794,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
57945794
timeoutDurationSelector = firstTimeout;
57955795
firstTimeout = observableNever();
57965796
}
5797-
other || (other = observableThrow(new TimeoutError()));
5797+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
57985798
return new AnonymousObservable(function (o) {
57995799
var subscription = new SerialDisposable(),
58005800
timer = new SerialDisposable(),
@@ -5854,7 +5854,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
58545854
}
58555855
if (other instanceof Error) { other = observableThrow(other); }
58565856
isScheduler(scheduler) || (scheduler = defaultScheduler);
5857-
5857+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
58585858
return new AnonymousObservable(function (o) {
58595859
var id = 0,
58605860
original = new SingleAssignmentDisposable(),

dist/rx.lite.map

+1-1
Large diffs are not rendered by default.

dist/rx.lite.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.time.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@
774774
timeoutDurationSelector = firstTimeout;
775775
firstTimeout = observableNever();
776776
}
777-
other || (other = observableThrow(new TimeoutError()));
777+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
778778
return new AnonymousObservable(function (o) {
779779
var subscription = new SerialDisposable(),
780780
timer = new SerialDisposable(),
@@ -834,7 +834,7 @@
834834
}
835835
if (other instanceof Error) { other = observableThrow(other); }
836836
isScheduler(scheduler) || (scheduler = defaultScheduler);
837-
837+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
838838
return new AnonymousObservable(function (o) {
839839
var id = 0,
840840
original = new SingleAssignmentDisposable(),

dist/rx.time.map

+1-1
Large diffs are not rendered by default.

dist/rx.time.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/rx-core-binding/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-core-binding",
33
"title": "Reactive Extensions for JavaScript (RxJS) Core",
44
"description": "Core binding library for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-core-testing/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-core-testing",
33
"title": "Reactive Extensions for JavaScript (RxJS) Core",
44
"description": "Core testing library for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-core",
33
"title": "Reactive Extensions for JavaScript (RxJS) Core",
44
"description": "Core library for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-aggregates-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-aggregates-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Aggregates",
44
"description": "Lightweight older browser compatible library with aggregate functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-aggregates/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-aggregates",
33
"title": "Reactive Extensions for JavaScript (RxJS) Aggregates",
44
"description": "Lightweight library with aggregate functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-async-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-async-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight older browser compatible library with asynchronous functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-async/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-async",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight library with asynchronous functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-backpressure-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-backpressure-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight older browser compatible library with backpressure functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-backpressure/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-backpressure",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight library with backpressure functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-coincidence-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-coincidence-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight older browser compatible library with coincidence functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-coincidence/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-coincidence",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight library with coincidence functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Lite",
44
"description": "Lightweight IE6 compatible library for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-compat/rx.lite.compat.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6136,7 +6136,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
61366136
timeoutDurationSelector = firstTimeout;
61376137
firstTimeout = observableNever();
61386138
}
6139-
other || (other = observableThrow(new TimeoutError()));
6139+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
61406140
return new AnonymousObservable(function (o) {
61416141
var subscription = new SerialDisposable(),
61426142
timer = new SerialDisposable(),
@@ -6196,7 +6196,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
61966196
}
61976197
if (other instanceof Error) { other = observableThrow(other); }
61986198
isScheduler(scheduler) || (scheduler = defaultScheduler);
6199-
6199+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
62006200
return new AnonymousObservable(function (o) {
62016201
var id = 0,
62026202
original = new SingleAssignmentDisposable(),

modules/rx-lite-compat/rx.lite.compat.map

+1-1
Large diffs are not rendered by default.

modules/rx-lite-compat/rx.lite.compat.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/rx-lite-experimental-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-experimental-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight older browser compatible library with experimental functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-experimental/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-experimental",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight library with experimental functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-extras-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-extras-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Lite",
44
"description": "Lightweight IE6 compatible library extras for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-extras/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-extras",
33
"title": "Reactive Extensions for JavaScript (RxJS) Lite",
44
"description": "Lightweight library extras for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-joinpatterns-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-joinpatterns-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight older browser compatible library with join pattern functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-joinpatterns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-joinpatterns",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight library with join pattern functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-testing-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-testing-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight older browser compatible library with testing functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-testing/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-testing",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight library with testing functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-time-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-time-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight older browser compatible library with time-based functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-time/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-time",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight library with time-based functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-virtualtime-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-virtualtime-compat",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight older browser compatible library with virtual time functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite-virtualtime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-virtualtime",
33
"title": "Reactive Extensions for JavaScript (RxJS) Async",
44
"description": "Lightweight library with virtual time functions for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite",
33
"title": "Reactive Extensions for JavaScript (RxJS) Lite",
44
"description": "Lightweight library for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

modules/rx-lite/rx.lite.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5794,7 +5794,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
57945794
timeoutDurationSelector = firstTimeout;
57955795
firstTimeout = observableNever();
57965796
}
5797-
other || (other = observableThrow(new TimeoutError()));
5797+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
57985798
return new AnonymousObservable(function (o) {
57995799
var subscription = new SerialDisposable(),
58005800
timer = new SerialDisposable(),
@@ -5854,7 +5854,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
58545854
}
58555855
if (other instanceof Error) { other = observableThrow(other); }
58565856
isScheduler(scheduler) || (scheduler = defaultScheduler);
5857-
5857+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
58585858
return new AnonymousObservable(function (o) {
58595859
var id = 0,
58605860
original = new SingleAssignmentDisposable(),

modules/rx-lite/rx.lite.map

+1-1
Large diffs are not rendered by default.

modules/rx-lite/rx.lite.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx",
33
"title": "Reactive Extensions for JavaScript (RxJS)",
44
"description": "Library for composing asynchronous and event-based operations in JavaScript",
5-
"version": "4.0.5",
5+
"version": "4.0.6",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS",
77
"author": {
88
"name": "Cloud Programmability Team",

src/core/linq/observable/timeout.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
timeoutDurationSelector = firstTimeout;
1212
firstTimeout = observableNever();
1313
}
14-
other || (other = observableThrow(new TimeoutError()));
14+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
1515
return new AnonymousObservable(function (o) {
1616
var subscription = new SerialDisposable(),
1717
timer = new SerialDisposable(),
@@ -71,7 +71,7 @@
7171
}
7272
if (other instanceof Error) { other = observableThrow(other); }
7373
isScheduler(scheduler) || (scheduler = defaultScheduler);
74-
74+
Observable.isObservable(other) || (other = observableThrow(new TimeoutError()));
7575
return new AnonymousObservable(function (o) {
7676
var id = 0,
7777
original = new SingleAssignmentDisposable(),

0 commit comments

Comments
 (0)