Skip to content

Commit 4d0450f

Browse files
committed
fixup
1 parent c4eb0c1 commit 4d0450f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

source/adios2/toolkit/remote/XrootdRemote.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,12 @@ myRequest *myRequest::currentRequest = 0; // Pointer to current request
125125

126126
void myRequest::Alert(XrdSsiRespInfoMsg &aMsg)
127127
{
128-
char *theMsg;
129-
int theMsz;
128+
// char *theMsg;
129+
// int theMsz;
130130

131131
// Get the message
132132
//
133-
theMsg = aMsg.GetMsg(theMsz);
133+
// theMsg = aMsg.GetMsg(theMsz);
134134

135135
// Print what we received
136136
//
@@ -140,7 +140,7 @@ void myRequest::Alert(XrdSsiRespInfoMsg &aMsg)
140140

141141
// Recycle the message
142142
//
143-
aMsg.RecycleMsg();
143+
// aMsg.RecycleMsg();
144144
}
145145

146146
/******************************************************************************/
@@ -337,7 +337,7 @@ Remote::GetHandle XrootdRemote::Get(char *VarName, size_t Step, size_t BlockID,
337337
Dims &Start, void *dest)
338338
{
339339
#ifdef ADIOS2_HAVE_XROOTD
340-
char rName[512] = "/home/eisen/xroot/data";
340+
char rName[512] = "/etc";
341341
XrdSsiResource rSpec((std::string)rName);
342342
myRequest *reqP;
343343
std::string reqData = "get Filename=" + std::string(m_Filename) + std::string("&RMOrder=") +

testing/adios2/engine/bp/generateXRootDConfig.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/bin/sh
2-
echo "First arg is $1"
2+
echo "Generating config for XRootD with plugin library at $1"
33
mkdir -p xroot/var/spool
44
mkdir -p xroot/run/xrootd
55
mkdir -p xroot/etc/xrootd
66
{
77
echo "xrootd.fslib libXrdSsi.so";
88
echo ""
9-
echo "all.export ${PWD}/xroot/data nolock r/w";
9+
echo "all.export /etc nolock r/w";
1010
echo ""
1111
echo "oss.statlib -2 libXrdSsi.so";
1212
echo ""

0 commit comments

Comments
 (0)