Skip to content

Commit

Permalink
Do not user osdf://-style URLs in integration test
Browse files Browse the repository at this point in the history
The osdf://-style URLs now only work for OSDF; use pelican:// scheme
for similar behavior to before.
  • Loading branch information
bbockelm committed Feb 29, 2024
1 parent c6c1861 commit 9659f93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions github_scripts/get_put_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ do
done

# Run pelican object put
./pelican object put input.txt osdf:///test/input.txt -d -t token -l putOutput.txt
./pelican object put input.txt pelican:///test/input.txt -d -t token -l putOutput.txt

# Check output of command
if grep -q "Uploaded bytes: 47" putOutput.txt; then
Expand All @@ -107,7 +107,7 @@ else
to_exit=1
fi

./pelican object get osdf:///test/input.txt output.txt -d -t token -l getOutput.txt
./pelican object get pelican:///test/input.txt output.txt -d -t token -l getOutput.txt

# Check output of command
if grep -q "Downloaded bytes: 47" getOutput.txt; then
Expand Down

0 comments on commit 9659f93

Please sign in to comment.