summaryrefslogtreecommitdiff
path: root/icespider/fileSessions/fileSessions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'icespider/fileSessions/fileSessions.cpp')
-rw-r--r--icespider/fileSessions/fileSessions.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/icespider/fileSessions/fileSessions.cpp b/icespider/fileSessions/fileSessions.cpp
index e1c3b5c..ad026da 100644
--- a/icespider/fileSessions/fileSessions.cpp
+++ b/icespider/fileSessions/fileSessions.cpp
@@ -35,6 +35,7 @@ namespace IceSpider {
SessionPtr createSession(const ::Ice::Current &) override
{
auto s = std::make_shared<Session>();
+ // NOLINTNEXTLINE(clang-analyzer-optin.cplusplus.VirtualCall)
s->id = boost::lexical_cast<std::string>(boost::uuids::random_generator()());
s->duration = duration;
save(s);
@@ -109,7 +110,7 @@ namespace IceSpider {
while (di != std::filesystem::directory_iterator()) {
auto s = load(di->path());
if (s && isExpired(s)) {
- destroySession(s->id, Ice::Current());
+ FileSessions::destroySession(s->id, Ice::Current());
}
di++;
}