Skip to content

Commit

Permalink
Merge pull request #1478 from ApexAI/iox-1476-replace-non-unicode-cha…
Browse files Browse the repository at this point in the history
…rarcter-in-roudi-release-2.0

iox-#1476 Replace single quotation mark with apostrophe [release_2.0]
  • Loading branch information
elBoberido authored Jul 14, 2022
2 parents ea45be4 + 30c64f3 commit f920ef4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/website/release-notes/.pages
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
nav:
- iceoryx-v2-0-3.md
- iceoryx-v2-0-2.md
- iceoryx-v2-0-1.md
- iceoryx-v2-0-0.md
Expand Down
9 changes: 9 additions & 0 deletions doc/website/release-notes/iceoryx-v2-0-3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# iceoryx v2.0.3

## [v2.0.3](https://github.com/eclipse-iceoryx/iceoryx/tree/v2.0.2) (tbd)

[Full Changelog](https://github.com/eclipse-iceoryx/iceoryx/compare/v2.0.2...v2.0.3)

**Bugfixes:**

- Build error on certain versions of Windows/Visual Studio [\#1476](https://github.com/eclipse-iceoryx/iceoryx/issues/1476)
2 changes: 1 addition & 1 deletion iceoryx_posh/source/roudi/process_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ void ProcessManager::evaluateKillError(const Process& process,
{
LogWarn() << "Process ID " << process.getPid() << " named '" << process.getName()
<< "' could not be killed with"
<< (shutdownPolicy == ShutdownPolicy::SIG_KILL ? "SIGKILL" : "SIGTERM") << " for unknown reason: "
<< (shutdownPolicy == ShutdownPolicy::SIG_KILL ? "SIGKILL" : "SIGTERM") << " for unknown reason: '"
<< errorString << "'";
errorHandler(Error::kPOSH__ROUDI_PROCESS_SHUTDOWN_FAILED, nullptr, ErrorLevel::SEVERE);
}
Expand Down

0 comments on commit f920ef4

Please sign in to comment.