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
7d7b6d23
Commit
7d7b6d23
authored
Aug 08, 2018
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix assert
parent
656d0bd2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
libcaf_core/src/scheduled_actor.cpp
libcaf_core/src/scheduled_actor.cpp
+1
-1
No files found.
libcaf_core/src/scheduled_actor.cpp
View file @
7d7b6d23
...
@@ -118,7 +118,7 @@ scheduled_actor::scheduled_actor(actor_config& cfg)
...
@@ -118,7 +118,7 @@ scheduled_actor::scheduled_actor(actor_config& cfg)
max_batch_delay_ticks_
=
sys_cfg
.
stream_max_batch_delay
.
count
()
max_batch_delay_ticks_
=
sys_cfg
.
stream_max_batch_delay
.
count
()
/
interval
.
count
();
/
interval
.
count
();
CAF_ASSERT
(
max_batch_delay_ticks_
>
0
);
CAF_ASSERT
(
max_batch_delay_ticks_
>
0
);
CAF_ASSERT
(
sys_cfg
.
stream
ing_credit_round_interval_us
>
0
);
CAF_ASSERT
(
sys_cfg
.
stream
_credit_round_interval
.
count
()
>
0
);
credit_round_ticks_
=
sys_cfg
.
stream_credit_round_interval
.
count
()
credit_round_ticks_
=
sys_cfg
.
stream_credit_round_interval
.
count
()
/
interval
.
count
();
/
interval
.
count
();
CAF_ASSERT
(
credit_round_ticks_
>
0
);
CAF_ASSERT
(
credit_round_ticks_
>
0
);
...
...
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