Skip to content

Commit

Permalink
Upgrade HDFS
Browse files Browse the repository at this point in the history
The null character now results in 400 Bad Request, so must be removed
  • Loading branch information
Jing Wang committed Feb 19, 2023
1 parent b192294 commit 0d5d600
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
# https://devguide.python.org/versions/#supported-versions
python-version: [3.7, 3.8, 3.9, '3.10', 3.11]
env:
- VERSION=2.10.1 MD5=13939bb85bd85bb376810c1e1d6f6bc8
- VERSION=3.2.2 MD5=e7cebb6420657030539dc644ed7ee1f0
- VERSION=2.10.2 MD5=003704f56d7d5dc72e7a04fe8147ff10
- VERSION=3.3.4 MD5=ae2caf4e19e215a50f13aa0b865c5079

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion test_pyhdfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

# Exclude special path characters
PATHOLOGICAL_NAME = (
"".join(chr(n) for n in range(0, 150) if chr(n) not in {"/", ":"}) + "中文"
"".join(chr(n) for n in range(1, 150) if chr(n) not in {"/", ":"}) + "中文"
)


Expand Down

0 comments on commit 0d5d600

Please sign in to comment.