Skip to content

Commit

Permalink
DAOS-14698 crtl: Create container with attributes
Browse files Browse the repository at this point in the history
Fix NLT uns_link test

Features: control dfuse container daos_cmd
Required-githooks: true

Signed-off-by: Cedric Koch-Hofer <[email protected]>
  • Loading branch information
kanard38 authored and knard-intel committed Oct 28, 2024
1 parent 98bd3c2 commit a390e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/node_local_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1811,7 +1811,7 @@ def create_cont(conf, pool=None, ctype=None, label=None, path=None, oclass=None,
cmd.extend(['--hints', hints])

if attrs:
cmd.extend(['--attrs', [f"{name}:{val}" for name, val in attrs.items()].join(',')])
cmd.extend(['--attrs', ','.join([f"{name}:{val}" for name, val in attrs.items()])])

def _create_cont():
"""Helper function for create_cont"""
Expand Down

0 comments on commit a390e8a

Please sign in to comment.