Gems\MetaStream

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-08-02 16:04:46 -07:00
parent 29a2ad79a4
commit d5c491a694
2 changed files with 2 additions and 2 deletions
@@ -323,7 +323,7 @@ namespace Metastream
{
// Initialise and start the HTTP server
m_server = std::unique_ptr<BaseHttpServer>(new CivetHttpServer(m_cache.get()));
string serverOptions = m_serverOptionsCVar->GetString();
AZStd::string serverOptions = m_serverOptionsCVar->GetString();
CryLogAlways("Initializing Metastream: Options=\"%s\"", serverOptions.c_str());
bool result = m_server->Start(serverOptions.c_str());
@@ -60,7 +60,7 @@ public:
}
const string m_serverOptionsString = "document_root=Gems/Metastream/Files;listening_ports=8082";
const char* m_serverOptionsString = "document_root=Gems/Metastream/Files;listening_ports=8082";
protected:
void SetUp() override