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
37b1c2dc
Commit
37b1c2dc
authored
Apr 14, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove debug output
parent
1dba5cd5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
3 deletions
+0
-3
libcaf_core/test/request.cpp
libcaf_core/test/request.cpp
+0
-2
libcaf_io/src/basp_broker.cpp
libcaf_io/src/basp_broker.cpp
+0
-1
No files found.
libcaf_core/test/request.cpp
View file @
37b1c2dc
...
...
@@ -335,12 +335,10 @@ CAF_TEST(request) {
bool
int_handler_called
=
false
;
s
->
request
(
foi
,
infinite
,
f_atom
::
value
).
receive
(
[
&
](
int
)
{
printf
(
"******* %s %d
\n
"
,
__FILE__
,
__LINE__
);
CAF_ERROR
(
"int handler called"
);
int_handler_called
=
true
;
},
[
&
](
const
error
&
)
{
printf
(
"******* %s %d
\n
"
,
__FILE__
,
__LINE__
);
CAF_MESSAGE
(
"error received"
);
error_handler_called
=
true
;
}
...
...
libcaf_io/src/basp_broker.cpp
View file @
37b1c2dc
...
...
@@ -437,7 +437,6 @@ basp_broker::basp_broker(actor_config& cfg)
behavior
basp_broker
::
make_behavior
()
{
CAF_LOG_TRACE
(
""
);
if
(
system
().
middleman
().
enable_automatic_connections
())
{
printf
(
"enable automatic connections
\n
"
);
CAF_LOG_INFO
(
"enable automatic connections"
);
// open a random port and store a record for our peers how to
// connect to this broker directly in the configuration server
...
...
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