File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
target
2
2
Cargo.lock
3
+ examples/basic/video.js
4
+ examples/basic/videojs-http-streaming
Original file line number Diff line number Diff line change 37
37
//! the ID is preserved.
38
38
//!
39
39
//! What happens if two chunks for the same stream are requested simulatenously??
40
- #![ feature( try_trait, peekable_next_if , result_flattening) ]
40
+ #![ feature( try_trait, result_flattening) ]
41
41
#![ allow( unused_must_use, dead_code) ]
42
42
43
43
pub mod error;
Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ impl Session {
325
325
}
326
326
327
327
pub fn is_timeout ( & self ) -> bool {
328
- Instant :: now ( ) > self . last_reset . load ( ) + Duration :: from_secs ( 30 )
328
+ Instant :: now ( ) > self . last_reset . load ( ) + Duration :: from_secs ( 10 )
329
329
}
330
330
331
331
pub fn reset_timeout ( & self , last_requested : u64 ) {
You can’t perform that action at this time.
0 commit comments