mirror of https://github.com/fafhrd91/actix-net
add changelog
This commit is contained in:
parent
c479243934
commit
9564dac5c3
|
@ -6,6 +6,16 @@
|
||||||
|
|
||||||
* Add `System::attach_to_tokio` method. [#173]
|
* Add `System::attach_to_tokio` method. [#173]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Deprecate `Arbiter::is_running`and `Arbiter::local_join`. `Arbiter::spawn` would panic when `System` is not in scope. [#207]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Fix work load issue by removing `PENDDING` thread local. [#207]
|
||||||
|
|
||||||
|
[#207]: https://github.com/actix/actix-net/pull/207
|
||||||
|
|
||||||
## [1.1.1] - 2020-04-30
|
## [1.1.1] - 2020-04-30
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -63,7 +63,3 @@ pub mod time {
|
||||||
pub use tokio::time::{interval, interval_at, Interval};
|
pub use tokio::time::{interval, interval_at, Interval};
|
||||||
pub use tokio::time::{timeout, Timeout};
|
pub use tokio::time::{timeout, Timeout};
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod task {
|
|
||||||
pub use tokio::task::yield_now;
|
|
||||||
}
|
|
||||||
|
|
|
@ -24,7 +24,10 @@ impl Runtime {
|
||||||
.basic_scheduler()
|
.basic_scheduler()
|
||||||
.build()?;
|
.build()?;
|
||||||
|
|
||||||
Ok(Runtime { rt, local: LocalSet::new() })
|
Ok(Runtime {
|
||||||
|
rt,
|
||||||
|
local: LocalSet::new(),
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn local(&self) -> &LocalSet {
|
pub(super) fn local(&self) -> &LocalSet {
|
||||||
|
|
Loading…
Reference in New Issue