Skip to content

Commit

Permalink
iox-#1030 Remove debug code and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
elBoberido committed Sep 8, 2023
1 parent e0e0835 commit 86d539b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion iceoryx_examples/waitset/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ samples. When `take()` was successful we print our message to
the console inside of the `and_then` lambda.
To save some mileage on the keyboard, a type alias for _WaitSet_ with the storage capacity
for 2 event is defined.
for 2 events is defined.
<!--[geoffrey][iceoryx_examples/waitset/ice_waitset_gateway.cpp][waitset type alias]-->
```cpp
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_posh/source/roudi/roudi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ void RouDi::processRuntimeMessages() noexcept
{
// read RouDi's IPC channel
runtime::IpcMessage message;
if (roudiIpcInterface.timedReceive(10_ms /*m_runtimeMessagesThreadTimeout*/, message))
if (roudiIpcInterface.timedReceive(m_runtimeMessagesThreadTimeout, message))
{
auto cmd = runtime::stringToIpcMessageType(message.getElementAtIndex(0).c_str());
RuntimeName_t runtimeName{into<lossy<RuntimeName_t>>(message.getElementAtIndex(1))};
Expand Down
4 changes: 0 additions & 4 deletions iceoryx_posh/test/integrationtests/test_service_discovery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1037,14 +1037,10 @@ TYPED_TEST(ServiceDiscoveryFindService_test, FindInMaximumMixedServices)
this->add(randomService("Ferdinand", "Spitz"));
}

IOX_LOG(FATAL) << "#### start";

auto s3 = randomService("Ferdinand", "Spitz");
this->add(s3);
++created;

IOX_LOG(FATAL) << "#### end";

EXPECT_EQ(created, MAX);

// create some services of the other kind
Expand Down

0 comments on commit 86d539b

Please sign in to comment.