Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
ec7bb588
Commit
ec7bb588
authored
Oct 15, 2014
by
Steven Murray
Browse files
Corrected the namespaces within castor/tape/tapeserver/Constants.hpp
parent
0c89050e
Changes
2
Hide whitespace changes
Inline
Side-by-side
castor/tape/tapeserver/Constants.hpp
View file @
ec7bb588
...
...
@@ -32,7 +32,7 @@
namespace
castor
{
namespace
tape
{
namespace
server
{
namespace
tape
server
{
/**
* The compile-time default value of the tapebridged configuration parameter
* named TAPEBRIDGE/MAXBYTESBEFOREFLUSH.
...
...
@@ -91,8 +91,6 @@ namespace server {
*/
const
uint64_t
TAPEBRIDGE_BULKREQUESTRECALLMAXFILES
=
500
;
}
// namespace tape
bridge
}
// namespace tape
server
}
// namespace tape
}
// namespace castor
castor/tape/tapeserver/daemon/TapeDaemon.cpp
View file @
ec7bb588
...
...
@@ -1068,22 +1068,22 @@ castor::tape::tapeserver::daemon::DataTransferSession::CastorConf
"TAPE"
,
"BADMIR_HANDLING"
,
"CANCEL"
,
&
m_log
);
castorConf
.
tapebridgeBulkRequestMigrationMaxBytes
=
config
.
getConfEntInt
(
"TAPEBRIDGE"
,
"BULKREQUESTMIGRATIONMAXBYTES"
,
(
uint64_t
)
server
::
TAPEBRIDGE_BULKREQUESTMIGRATIONMAXBYTES
,
&
m_log
);
(
uint64_t
)
TAPEBRIDGE_BULKREQUESTMIGRATIONMAXBYTES
,
&
m_log
);
castorConf
.
tapebridgeBulkRequestMigrationMaxFiles
=
config
.
getConfEntInt
(
"TAPEBRIDGE"
,
"BULKREQUESTMIGRATIONMAXFILES"
,
(
uint64_t
)
server
::
TAPEBRIDGE_BULKREQUESTMIGRATIONMAXFILES
,
&
m_log
);
(
uint64_t
)
TAPEBRIDGE_BULKREQUESTMIGRATIONMAXFILES
,
&
m_log
);
castorConf
.
tapebridgeBulkRequestRecallMaxBytes
=
config
.
getConfEntInt
(
"TAPEBRIDGE"
,
"BULKREQUESTRECALLMAXBYTES"
,
(
uint64_t
)
server
::
TAPEBRIDGE_BULKREQUESTRECALLMAXBYTES
,
&
m_log
);
(
uint64_t
)
TAPEBRIDGE_BULKREQUESTRECALLMAXBYTES
,
&
m_log
);
castorConf
.
tapebridgeBulkRequestRecallMaxFiles
=
config
.
getConfEntInt
(
"TAPEBRIDGE"
,
"BULKREQUESTRECALLMAXFILES"
,
(
uint64_t
)
server
::
TAPEBRIDGE_BULKREQUESTRECALLMAXFILES
,
&
m_log
);
(
uint64_t
)
TAPEBRIDGE_BULKREQUESTRECALLMAXFILES
,
&
m_log
);
castorConf
.
tapebridgeMaxBytesBeforeFlush
=
config
.
getConfEntInt
(
"TAPEBRIDGE"
,
"MAXBYTESBEFOREFLUSH"
,
(
uint64_t
)
server
::
TAPEBRIDGE_MAXBYTESBEFOREFLUSH
,
&
m_log
);
(
uint64_t
)
TAPEBRIDGE_MAXBYTESBEFOREFLUSH
,
&
m_log
);
castorConf
.
tapebridgeMaxFilesBeforeFlush
=
config
.
getConfEntInt
(
"TAPEBRIDGE"
,
"MAXFILESBEFOREFLUSH"
,
(
uint64_t
)
server
::
TAPEBRIDGE_MAXFILESBEFOREFLUSH
,
&
m_log
);
(
uint64_t
)
TAPEBRIDGE_MAXFILESBEFOREFLUSH
,
&
m_log
);
castorConf
.
tapeserverdDiskThreads
=
config
.
getConfEntInt
(
"RTCPD"
,
"THREAD_POOL"
,
(
uint32_t
)
RTCPD_THREAD_POOL
,
&
m_log
);
castorConf
.
tapeserverdRemoteFileProtocol
=
config
.
getConfEntString
(
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment