| 518 | } |
| 519 | |
| 520 | static void MarkMissingMetadataPath(const std::string& path) { |
| 521 | std::lock_guard<std::mutex> lock(g_missingMetadataMutex); |
| 522 | g_missingMetadataPaths.insert(path); |
| 523 | } |
| 524 | |
| 525 | static void ClearMissingMetadataForApp(uint32_t accountId, uint32_t appId) { |
| 526 | std::string prefix = std::to_string(accountId) + "/" + std::to_string(appId) + "/"; |
no outgoing calls
no test coverage detected