Skip to content
Snippets Groups Projects
Commit 95e61f40 authored by Steven Murray's avatar Steven Murray
Browse files

Fixed compilation error caused by my last commit

parent 7d362ff8
No related branches found
No related tags found
No related merge requests found
......@@ -267,9 +267,8 @@ XrdCtaFilesystem::XrdCtaFilesystem():
m_catalogue(m_catalogueConn),
m_scheduler(m_catalogue, m_scheddb, 5, 2*1000*1000)
{
// Currently using the in-memory CTA catalogue and therefore it needs to be initialised
cta::catalogue::Sqlite::enableForeignKeys(m_catalogueConn);
cta::catalogue::Sqlite::createCatalogueDatabaseSchema(m_catalogueConn);
// Currently using the in-memory CTA catalogue and therefore the schema needs to be created
m_catalogueConn.createCatalogueDatabaseSchema();
// If the backend is a VFS, make sure we don't delete it on exit.
// If not, nevermind.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment