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

bug #101798: RFE: Set the default tapebridge bulk parameters to those tested at CERN

Had to had ULL to large default values in order to compile on 32-bit platforms.
parent 2052d737
No related branches found
No related tags found
No related merge requests found
......@@ -170,7 +170,7 @@ namespace tapebridge {
* the resulting set can represent. This number may be exceeded when the set
* contains a single file.
*/
const uint64_t TAPEBRIDGE_BULKREQUESTMIGRATIONMAXBYTES = 80000000000;
const uint64_t TAPEBRIDGE_BULKREQUESTMIGRATIONMAXBYTES = 80000000000ULL;
/**
* When the tapegatewayd daemon is asked for a set of files to migrate to
......@@ -185,7 +185,7 @@ namespace tapebridge {
* the resulting set can represent. This number may be exceeded when the set
* contains a single file.
*/
const uint64_t TAPEBRIDGE_BULKREQUESTRECALLMAXBYTES = 80000000000;
const uint64_t TAPEBRIDGE_BULKREQUESTRECALLMAXBYTES = 80000000000ULL;
/**
* When the tapegatewayd daemon is asked for a set of files to recall from
......
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