commit | ae29b8c4d22fddb9f17610f87d27b53c95509e7c | [log] [tgz] |
---|---|---|
author | Adriana Kobylak <anoo@us.ibm.com> | Wed Apr 24 11:19:18 2019 -0500 |
committer | Ed Tanous <ed.tanous@intel.com> | Thu May 02 00:37:45 2019 +0000 |
tree | 5d01a7b1e328ead214f719dc6de1f70929dde049 | |
parent | 7bffdb7e9da69ae5416cda8df826372c33716beb [diff] [blame] |
bmcweb: /s/boost::beast::string_view/std::string_view/g Follow-on to https://gerrit.openbmc-project.xyz/c/openbmc/bmcweb/+/18891 Tested: Checked that the host console and virtual media endpoints still worked as expected. Change-Id: Ifdc5f21f3668bdf9bd24189504aaeb17b232c921 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
diff --git a/include/kvm_websocket.hpp b/include/kvm_websocket.hpp index d0c5539..ae4d899 100644 --- a/include/kvm_websocket.hpp +++ b/include/kvm_websocket.hpp
@@ -87,7 +87,7 @@ } outputBuffer.commit(bytesRead); - boost::beast::string_view payload( + std::string_view payload( static_cast<const char*>(outputBuffer.data().data()), bytesRead); BMCWEB_LOG_DEBUG << "Sending payload size " << payload.size(); session->sendBinary(payload);