Skip to content

Conversation

@mwestphall
Copy link
Contributor

Add a perl dependency, and sneak in a couple extra fixes:

  • rsync was also missing as a dependency
  • SafeConfigParser is deprecated in python >3.2
  • proc.communicate output changed from string to bytes in python 3

output, _ = proc.communicate()
if proc.returncode != 0:
if output and ("CRL verification failed" in output or "Download error" in output):
if output and (b"CRL verification failed" in output or b"Download error" in output):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good catch!

@matyasselmeci matyasselmeci merged commit e893b7d into opensciencegrid:master Jun 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants