Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
f3c0377d
Unverified
Commit
f3c0377d
authored
Aug 07, 2020
by
Dominik Charousset
Committed by
GitHub
Aug 07, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1134
Port #1133 to master
parents
27645ccb
72ae6696
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
CHANGELOG.md
CHANGELOG.md
+10
-0
libcaf_io/src/io/abstract_broker.cpp
libcaf_io/src/io/abstract_broker.cpp
+2
-0
No files found.
CHANGELOG.md
View file @
f3c0377d
...
@@ -176,6 +176,15 @@ is based on [Keep a Changelog](https://keepachangelog.com).
...
@@ -176,6 +176,15 @@ is based on [Keep a Changelog](https://keepachangelog.com).
assume that the parsed URI for
`tcp://127.0.0.1:8080`
returns an IP address
assume that the parsed URI for
`tcp://127.0.0.1:8080`
returns an IP address
when calling
`authority().host`
.
when calling
`authority().host`
.
## [0.17.7] - Unreleased
### Fixed
-
Datagram servants of UDP socket managers were not added as children to their
parent broker on creation, which prevented proper system shutdown in some
cases. Adding all servants consistently to the broker should make sure UDP
brokers terminate correctly (#1133).
## [0.17.6] - 2020-07-24
## [0.17.6] - 2020-07-24
### Fixed
### Fixed
...
@@ -505,6 +514,7 @@ is based on [Keep a Changelog](https://keepachangelog.com).
...
@@ -505,6 +514,7 @@ is based on [Keep a Changelog](https://keepachangelog.com).
-
Configuring colored terminal output should now print colored output.
-
Configuring colored terminal output should now print colored output.
[
0.18.0
]:
https://github.com/actor-framework/actor-framework/compare/0.17.3...master
[
0.18.0
]:
https://github.com/actor-framework/actor-framework/compare/0.17.3...master
[
0.17.7
]:
https://github.com/actor-framework/actor-framework/compare/0.17.6...release/0.17
[
0.17.6
]:
https://github.com/actor-framework/actor-framework/releases/0.17.6
[
0.17.6
]:
https://github.com/actor-framework/actor-framework/releases/0.17.6
[
0.17.5
]:
https://github.com/actor-framework/actor-framework/releases/0.17.5
[
0.17.5
]:
https://github.com/actor-framework/actor-framework/releases/0.17.5
[
0.17.4
]:
https://github.com/actor-framework/actor-framework/releases/0.17.4
[
0.17.4
]:
https://github.com/actor-framework/actor-framework/releases/0.17.4
...
...
libcaf_io/src/io/abstract_broker.cpp
View file @
f3c0377d
...
@@ -217,6 +217,8 @@ void abstract_broker::add_datagram_servant(datagram_servant_ptr ptr) {
...
@@ -217,6 +217,8 @@ void abstract_broker::add_datagram_servant(datagram_servant_ptr ptr) {
launch_servant
(
ptr
);
launch_servant
(
ptr
);
for
(
auto
&
hdl
:
hdls
)
for
(
auto
&
hdl
:
hdls
)
add_hdl_for_datagram_servant
(
ptr
,
hdl
);
add_hdl_for_datagram_servant
(
ptr
,
hdl
);
auto
hdl
=
ptr
->
hdl
();
add_hdl_for_datagram_servant
(
std
::
move
(
ptr
),
hdl
);
}
}
void
abstract_broker
::
add_hdl_for_datagram_servant
(
datagram_servant_ptr
ptr
,
void
abstract_broker
::
add_hdl_for_datagram_servant
(
datagram_servant_ptr
ptr
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment