-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
Much like #2025 the config model is failing to create a new object due to 'name' KeyError
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "docker\models\configs.py", line 10, in __repr__
return f"<{self.__class__.__name__}: '{self.name}'>"
File "docker\models\configs.py", line 14, in name
return self.attrs['Spec']['Name']
This #2793 appears to be the fix that was implemented and should likely be implements for configs as well (if not other models that might have this issue)
MrCapsLock