Skip to content

Commit

Permalink
Merge pull request #3698 from matyasselmeci/pr/fix-service-type
Browse files Browse the repository at this point in the history
Fix copy-paste error in namespaces json generation
  • Loading branch information
matyasselmeci authored Feb 29, 2024
2 parents bebfecf + f130a9d commit 5a1806c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stashcache.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ def _cache_resource_dict(r: Resource):
return _service_resource_dict(r=r, service_name=XROOTD_CACHE_SERVER, auth_port_default=8443, unauth_port_default=8000)

def _origin_resource_dict(r: Resource):
return _service_resource_dict(r=r, service_name=XROOTD_CACHE_SERVER, auth_port_default=1095, unauth_port_default=1094)
return _service_resource_dict(r=r, service_name=XROOTD_ORIGIN_SERVER, auth_port_default=1095, unauth_port_default=1094)

def _namespace_dict(ns: Namespace):
nsdict = {
Expand Down

0 comments on commit 5a1806c

Please sign in to comment.