Skip to content

Commit

Permalink
refactor: fixed spelling in logs (#5016)
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoryIvo authored Nov 23, 2023
1 parent e7b8bc0 commit aa87f66
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ private KuraPayload doGetInventory() {
// get Docker Containers
if (this.containerOrchestrationService != null) {
try {
logger.info("Creating docker invenetory");
logger.info("Creating docker inventory");
List<ContainerInstanceDescriptor> containers = this.containerOrchestrationService
.listContainerDescriptors();
containers.stream().forEach(
Expand All @@ -410,7 +410,7 @@ private KuraPayload doGetInventory() {
// get Container Images
if (this.containerOrchestrationService != null) {
try {
logger.info("Creating container images invenetory");
logger.info("Creating container images inventory");
List<ImageInstanceDescriptor> images = this.containerOrchestrationService
.listImageInstanceDescriptors();
images.stream().forEach(image -> inventory.add(new SystemResourceInfo(image.getImageName(),
Expand Down

0 comments on commit aa87f66

Please sign in to comment.