Don't populate ext.device.authSecId

This commit is contained in:
Max Golovanov 2020-08-20 12:17:05 -07:00
Родитель e31c3bf129
Коммит 16463bfe9b
3 изменённых файлов: 0 добавлений и 9 удалений

Просмотреть файл

@ -408,7 +408,6 @@ void run(ILogger* logger, int maxStressRuns) {
logger->SetContext("TeamName", "PIE");
logger->SetContext("AppID", VER1 VER2 "-" __DATE__ " " __TIME__);
// Set the semantic context. For example, an app will set this property after the user logs in.
logger->GetSemanticContext()->SetUserMsaId("BCCA864D-1386-4D5A-9570-B129F6DD42B7");
logger->SetContext("context.string.key", "boo");
long long_value = 12345L;

Просмотреть файл

@ -98,8 +98,6 @@ namespace SampleCsUWP
Logger.SetContext("TeamName", "ARIA");
Logger.SetContext("AppID", "UAPCS");
// Set the semantic context. For example, an app will set this property after the user logs in.
Logger.SemanticContext.UserMsaId = "BCCA864D-1386-4D5A-9570-B129F6DD42B7";
var missingProps = new EventProperties("SomeEventWithMissingProps");
missingProps.SetProperty("MyMissingProp", "12345");

Просмотреть файл

@ -272,12 +272,6 @@ namespace MAT_NS_BEGIN
record.extLoc[0].timezone = iter->second.as_string;
}
iter = m_commonContextFields.find(COMMONFIELDS_USER_MSAID);
if (iter != m_commonContextFields.end())
{
record.extDevice[0].authSecId = iter->second.as_string;
}
iter = m_commonContextFields.find(COMMONFIELDS_NETWORK_COST);
if (iter != m_commonContextFields.end())
{