This is an automated email from the ASF dual-hosted git repository.

bharathkk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/samza.git


The following commit(s) were added to refs/heads/master by this push:
     new a7cb039  SAMZA-2677: Fix format string used to print uuid (#1524)
a7cb039 is described below

commit a7cb039d2d53cbcf207a12fce504066da8bc21cb
Author: Jon Bringhurst <[email protected]>
AuthorDate: Wed Aug 25 14:06:28 2021 -0700

    SAMZA-2677: Fix format string used to print uuid (#1524)
---
 .../container/placement/ContainerPlacementMetadataStore.java          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/samza-core/src/main/java/org/apache/samza/clustermanager/container/placement/ContainerPlacementMetadataStore.java
 
b/samza-core/src/main/java/org/apache/samza/clustermanager/container/placement/ContainerPlacementMetadataStore.java
index 64db5d9..6f936fe 100644
--- 
a/samza-core/src/main/java/org/apache/samza/clustermanager/container/placement/ContainerPlacementMetadataStore.java
+++ 
b/samza-core/src/main/java/org/apache/samza/clustermanager/container/placement/ContainerPlacementMetadataStore.java
@@ -164,7 +164,7 @@ public class ContainerPlacementMetadataStore {
         return Optional.of(requestMessage);
       } catch (IOException e) {
         throw new SamzaException(
-            String.format("Error reading the ContainerPlacementResponseMessage 
for uuid {}", uuid), e);
+            String.format("Error reading the ContainerPlacementResponseMessage 
for uuid: %s", uuid), e);
       }
     }
     return Optional.empty();
@@ -188,7 +188,7 @@ public class ContainerPlacementMetadataStore {
         return Optional.of(requestMessage);
       } catch (IOException e) {
         throw new SamzaException(
-            String.format("Error reading the ContainerPlacementResponseMessage 
for uuid {}", uuid), e);
+            String.format("Error reading the ContainerPlacementResponseMessage 
for uuid: %s", uuid), e);
       }
     }
     return Optional.empty();

Reply via email to