Skip to content

Commit

Permalink
Fix incorrect log message in SamzaAppMasterTaskManager.
Browse files Browse the repository at this point in the history
Signed-off-by: Jakob Glen Homan <[email protected]>
  • Loading branch information
jghoman committed Dec 20, 2013
1 parent 53d9df7 commit df6bd39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class SamzaAppMasterTaskManager(clock: () => Long, config: Config, state: SamzaA
case Some(taskId) => {
info("Got available task id (%d) for container: %s" format (taskId, container))
val streamsAndPartitionsForTask = Util.getStreamsAndPartitionsForContainer(taskId, state.taskCount, allSystemStreamPartitions)
info("Claimed partitions %s for container ID %s" format (allSystemStreamPartitions, taskId))
info("Claimed partitions %s for container ID %s" format (streamsAndPartitionsForTask, taskId))
val cmdBuilderClassName = config.getCommandClass.getOrElse(classOf[ShellCommandBuilder].getName)
val cmdBuilder = Class.forName(cmdBuilderClassName).newInstance.asInstanceOf[CommandBuilder]
.setConfig(config)
Expand Down

0 comments on commit df6bd39

Please sign in to comment.