Skip to content
Snippets Groups Projects
Commit f36c1570 authored by Cedric CAFFY's avatar Cedric CAFFY
Browse files

Corrected the CatalogueTest::getSchemaVersion() so that the schema version is...

Corrected the CatalogueTest::getSchemaVersion() so that the schema version is compared against the CTA_CATALOGUE_SCHEMA_VERSION_MAJOR/MINOR
parent e2e7ac95
Branches
Tags
No related merge requests found
......@@ -21,14 +21,15 @@
*
* @author Castor Dev team, castor-dev@cern.ch
*****************************************************************************/
#include "version.h"
#pragma once
namespace cta {
const int CA_MAXVIDLEN = 6; // maximum length for a VID
const int CTA_SCHEMA_VERSION_MAJOR = 0;
const int CTA_SCHEMA_VERSION_MINOR = 0;
const int CTA_SCHEMA_VERSION_MAJOR = CTA_CATALOGUE_SCHEMA_VERSION_MAJOR;
const int CTA_SCHEMA_VERSION_MINOR = CTA_CATALOGUE_SCHEMA_VERSION_MINOR;
const int TAPE_LABEL_UNITREADY_TIMEOUT = 300;
} // namespace cta
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment