Skip to content

Commit

Permalink
remove extraneous prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jreadey committed Apr 22, 2024
1 parent af625c9 commit 272feda
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion hsds/util/domainUtil.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ def validateDomain(id):
raise ValueError("Slash at end not allowed")
# the non-bucket part of the domain should start with '/'
domain_path = getPathForDomain(id)
print("domain_path:", domain_path)
if not domain_path or domain_path[0] != "/":
raise ValueError("Domain path should start with '/'")

Expand Down
1 change: 0 additions & 1 deletion tests/unit/domain_util_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ def testValidDomain(self):

valid_domains = ("/gov/nasa/nex", "/home", s3_path, file_path, azure_path)
for domain in valid_domains:
print(domain)
self.assertTrue(isValidDomain(domain))

def testValidDomainPath(self):
Expand Down

0 comments on commit 272feda

Please sign in to comment.