Use a different default port for traces

5ea7e4c / Martin Ridgers / 2021-06-17 10:26:52 +0200

[CL 17213735 by Martin Ridgers in ue5-main branch]
This commit is contained in:
Martin Ridgers
2021-08-18 09:03:56 -04:00
parent 854f477c8f
commit fd991adfd6

View File

@@ -92,7 +92,7 @@ static FStoreService* StartStore(const char* StoreDir)
FStoreService::FDesc Desc;
Desc.StoreDir = StoreDir;
Desc.StorePort = 1989;
Desc.RecorderPort = 1980;
Desc.RecorderPort = 1981;
return FStoreService::Create(Desc);
}