Skip to content

Commit

Permalink
Fix fatal storage type bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jhiemstrawisc committed Apr 4, 2024
1 parent 007eabd commit 0744604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xrootd/xrootd_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ func CheckOriginXrootdEnv(exportPath string, server server_structs.XRootDServer,
return err
}

if ost := param.Origin_StorageType.GetString(); ost == "s3" {
if ost := param.Origin_StorageType.GetString(); ost == "posix" {
// For each export, we symlink the exported directory, currently at /var/run/pelican/export/<export.FederationPrefix>,
// to the actual data source, which is what we get from the Export object's StoragePrefix
for _, export := range *originExports {
Expand Down

0 comments on commit 0744604

Please sign in to comment.