Skip to content

Commit 9ba5904

Browse files
committed
Merge branch 'master' into gridftpd
2 parents 9acab09 + f2179e2 commit 9ba5904

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

scripts/gridftp-hdfs-standalone.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/sh
22

3-
. /usr/share/osg/sysconfig/globus-gridftp-server-plugin
3+
OSG_CONFIG= /usr/share/osg/sysconfig/globus-gridftp-server-plugin
4+
[ -e $OSG_CONFIG ] && . $OSG_CONFIG
45

56
export CLASSPATH=$CLASSPATH
67

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/sh
22

3-
. /usr/share/osg/sysconfig/globus-gridftp-server-plugin
3+
OSG_CONFIG= /usr/share/osg/sysconfig/globus-gridftp-server-plugin
4+
[ -e $OSG_CONFIG ] && . $OSG_CONFIG
45

56
exec /usr/sbin/globus-gridftp-server -c @sysconfdir_resolved@/gridftp-hdfs/gridftp-inetd.conf -dsi hdfs
67

src/gridftp_hdfs.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ hdfs_destroy(
6969
*/
7070
static globus_gfs_storage_iface_t globus_l_gfs_hdfs_dsi_iface =
7171
{
72-
GLOBUS_GFS_DSI_DESCRIPTOR_BLOCKING | GLOBUS_GFS_DSI_DESCRIPTOR_SENDER,
72+
GLOBUS_GFS_DSI_DESCRIPTOR_BLOCKING | GLOBUS_GFS_DSI_DESCRIPTOR_SENDER |
73+
GLOBUS_GFS_DSI_DESCRIPTOR_REQUIRES_ORDERED_DATA,
7374
hdfs_start,
7475
hdfs_destroy,
7576
NULL, /* list */

0 commit comments

Comments
 (0)