cluster/Backend: Do not use const std::string_view&

This commit is contained in:
Arne Welzel 2025-01-09 16:50:12 +01:00
parent 6d1259423e
commit 9b2fff9640
2 changed files with 4 additions and 5 deletions

View file

@ -150,13 +150,12 @@ protected:
/**
* Process an incoming event message.
*/
bool ProcessEventMessage(const std::string_view& topic, const std::string_view& format,
detail::byte_buffer_span payload);
bool ProcessEventMessage(std::string_view topic, std::string_view format, detail::byte_buffer_span payload);
/**
* Process an incoming log message.
*/
bool ProcessLogMessage(const std::string_view& format, detail::byte_buffer_span payload);
bool ProcessLogMessage(std::string_view format, detail::byte_buffer_span payload);
private:
/**