File tree Expand file tree Collapse file tree 3 files changed +0
-11
lines changed
firestore/src/platform_browser Expand file tree Collapse file tree 3 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -228,11 +228,6 @@ export class WebChannelConnection implements Connection {
228
228
] ;
229
229
const webchannelTransport = createWebChannelTransport ( ) ;
230
230
const request : WebChannelOptions = {
231
- // Background channel test avoids the initial two test calls and decreases
232
- // initial cold start time.
233
- // TODO(dimond): wenboz@ mentioned this might affect use with proxies and
234
- // we should monitor closely for any reports.
235
- backgroundChannelTest : true ,
236
231
// Required for backend stickiness, routing behavior is based on this
237
232
// parameter.
238
233
httpSessionIdParam : 'gsessionid' ,
Original file line number Diff line number Diff line change @@ -45,9 +45,6 @@ goog.net.WebChannel.Options.concurrentRequestLimit;
45
45
/** @type {boolean|undefined } */
46
46
goog . net . WebChannel . Options . supportsCrossDomainXhr ;
47
47
48
- /** @type {string|undefined } */
49
- goog . net . WebChannel . Options . testUrl ;
50
-
51
48
/** @type {boolean|undefined } */
52
49
goog . net . WebChannel . Options . sendRawJson ;
53
50
@@ -57,7 +54,6 @@ goog.net.WebChannel.Options.httpSessionIdParam;
57
54
/** @type {string|undefined } */
58
55
goog . net . WebChannel . Options . httpHeadersOverwriteParam ;
59
56
60
- /** @type {boolean|undefined } */
61
57
goog . net . WebChannel . Options . backgroundChannelTest ;
62
58
63
59
/** @type {boolean|undefined } */
Original file line number Diff line number Diff line change @@ -85,11 +85,9 @@ export interface WebChannelOptions {
85
85
clientProtocolHeaderRequired ?: boolean ;
86
86
concurrentRequestLimit ?: number ;
87
87
supportsCrossDomainXhr ?: boolean ;
88
- testUrl ?: string ;
89
88
sendRawJson ?: boolean ;
90
89
httpSessionIdParam ?: string ;
91
90
httpHeadersOverwriteParam ?: string ;
92
- backgroundChannelTest ?: boolean ;
93
91
forceLongPolling ?: boolean ;
94
92
fastHandshake ?: boolean ;
95
93
disableRedac ?: boolean ;
You can’t perform that action at this time.
0 commit comments