Skip to content
This repository has been archived by the owner on Oct 31, 2019. It is now read-only.

Commit

Permalink
Fix log error
Browse files Browse the repository at this point in the history
  • Loading branch information
samson-jerome committed Aug 25, 2014
1 parent 10ccded commit 454f911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Puli/src/octopus/dispatcher/dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def updateCommandApply(self, dct):
# rn = command.renderNode
# rn.clearAssignment(command)
# rn.request("DELETE", "/commands/" + str(commandId) + "/")
LOGGER.warning("The emitting RN %s is different from the RN assigned to the command in pulimodel: %s." % ( renderNodeName, rn.name ) )
LOGGER.warning("The emitting RN %s is different from the RN assigned to the command in pulimodel: %s." % ( renderNodeName, command.renderNode.name ) )
raise KeyError("Command %d is running on a different rendernode (%s) than the one in puli's model (%s)." % (commandId, renderNodeName, command.renderNode.name))

rn = command.renderNode
Expand Down

0 comments on commit 454f911

Please sign in to comment.