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
9826298b
Commit
9826298b
authored
Sep 24, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1141
parents
7ad30c1c
8dcd8785
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
CHANGELOG.md
CHANGELOG.md
+4
-0
libcaf_core/caf/inbound_path.hpp
libcaf_core/caf/inbound_path.hpp
+3
-1
No files found.
CHANGELOG.md
View file @
9826298b
...
...
@@ -14,6 +14,10 @@ is based on [Keep a Changelog](https://keepachangelog.com).
-
When using
`CAF_MAIN`
, CAF now looks for the correct default config file name,
i.e.,
`caf-application.conf`
.
### Fixed
-
Setting an invalid credit policy no longer results in a segfault (#1140).
## [0.18.0-rc.1] - 2020-09-09
### Added
...
...
libcaf_core/caf/inbound_path.hpp
View file @
9826298b
...
...
@@ -78,9 +78,11 @@ public:
controller_
=
detail
::
token_based_credit_controller
::
make
(
self
(),
in
);
else
if
(
*
str
==
"size-based"
)
set_default
();
else
else
{
set_default
();
CAF_LOG_WARNING
(
"unrecognized credit policy:"
<<
*
str
<<
"(falling back to 'size-based')"
);
}
}
else
{
set_default
();
}
...
...
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