Skip to content

Commit

Permalink
RD-5724 Fill agent system for manylinux agents (#1239)
Browse files Browse the repository at this point in the history
Co-authored-by: glukhman <[email protected]>
  • Loading branch information
glukhman and glukhman authored Feb 1, 2023
1 parent c058f39 commit e690b2c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cloudify/agent_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ def delete_agent_exchange(cloudify_agent):
def _get_agent_system(cloudify_agent):
if cloudify_agent.get('windows'):
system = 'windows'
elif cloudify_agent.get('architecture'):
system = f"manylinux {cloudify_agent['architecture']}"
else:
system = cloudify_agent.get('distro')
if cloudify_agent.get('distro_codename'):
Expand Down

0 comments on commit e690b2c

Please sign in to comment.