rucio-clients 37.5.0__py3-none-any.whl → 37.7.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rucio-clients might be problematic. Click here for more details.

Files changed (46) hide show
  1. rucio/cli/bin_legacy/rucio.py +41 -22
  2. rucio/cli/bin_legacy/rucio_admin.py +1 -1
  3. rucio/cli/did.py +2 -2
  4. rucio/cli/rse.py +2 -3
  5. rucio/cli/rule.py +9 -5
  6. rucio/cli/subscription.py +1 -1
  7. rucio/client/baseclient.py +9 -4
  8. rucio/client/didclient.py +16 -16
  9. rucio/client/downloadclient.py +16 -15
  10. rucio/client/exportclient.py +45 -4
  11. rucio/client/lockclient.py +3 -3
  12. rucio/client/pingclient.py +35 -4
  13. rucio/client/replicaclient.py +2 -2
  14. rucio/client/touchclient.py +3 -2
  15. rucio/client/uploadclient.py +728 -183
  16. rucio/common/cache.py +1 -2
  17. rucio/common/client.py +4 -30
  18. rucio/common/config.py +27 -3
  19. rucio/common/constants.py +5 -1
  20. rucio/common/didtype.py +2 -2
  21. rucio/common/pcache.py +20 -25
  22. rucio/common/plugins.py +12 -19
  23. rucio/common/policy.py +3 -2
  24. rucio/common/schema/__init__.py +11 -8
  25. rucio/common/types.py +7 -5
  26. rucio/common/utils.py +1 -1
  27. rucio/rse/__init__.py +7 -6
  28. rucio/rse/protocols/ngarc.py +2 -2
  29. rucio/rse/protocols/srm.py +1 -1
  30. rucio/rse/protocols/webdav.py +8 -1
  31. rucio/rse/rsemanager.py +5 -4
  32. rucio/rse/translation.py +2 -2
  33. rucio/vcsversion.py +3 -3
  34. {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/METADATA +1 -1
  35. {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/RECORD +46 -46
  36. {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/etc/rse-accounts.cfg.template +0 -0
  37. {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/etc/rucio.cfg.atlas.client.template +0 -0
  38. {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/etc/rucio.cfg.template +0 -0
  39. {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/requirements.client.txt +0 -0
  40. {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/rucio_client/merge_rucio_configs.py +0 -0
  41. {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/scripts/rucio +0 -0
  42. {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/scripts/rucio-admin +0 -0
  43. {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/WHEEL +0 -0
  44. {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/licenses/AUTHORS.rst +0 -0
  45. {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/licenses/LICENSE +0 -0
  46. {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/top_level.txt +0 -0
@@ -18,6 +18,7 @@ from typing import Optional
18
18
  from requests import post
19
19
 
20
20
  from rucio.client.baseclient import BaseClient, choice
21
+ from rucio.common.constants import DEFAULT_VO
21
22
  from rucio.common.exception import RucioException, UnsupportedDIDType
22
23
 
23
24
 
@@ -49,7 +50,7 @@ class TouchClient(BaseClient):
49
50
  Raises
50
51
  ------
51
52
  DataIdentifierNotFound
52
- If given dids does not exist.
53
+ If given DIDs does not exist.
53
54
  RSENotFound
54
55
  If rse is not None and given rse does not exist.
55
56
  UnsupportedDIDType
@@ -63,7 +64,7 @@ class TouchClient(BaseClient):
63
64
  trace['eventType'] = 'touch'
64
65
  trace['clientState'] = 'DONE'
65
66
  trace['account'] = self.account
66
- if self.vo != 'def':
67
+ if self.vo != DEFAULT_VO:
67
68
  trace['vo'] = self.vo
68
69
 
69
70
  if rse: