diff options
Diffstat (limited to 'rpki/up_down.py')
-rw-r--r-- | rpki/up_down.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rpki/up_down.py b/rpki/up_down.py index 41f5ec2b..49d330bd 100644 --- a/rpki/up_down.py +++ b/rpki/up_down.py @@ -45,6 +45,7 @@ tag_class = xmlns + "class" tag_description = xmlns + "description" tag_issuer = xmlns + "issuer" tag_message = xmlns + "message" +tag_request = xmlns + "request" tag_status = xmlns + "status" @@ -764,7 +765,8 @@ class message_pdu(base_elt): Log query we're handling. Separate method so rootd can override. """ - logger.info("Serving %s query from child %s [sender %s, recipient %s]", self.type, child.child_handle, self.sender, self.recipient) + logger.info("Serving %s query from child %s [sender %s, recipient %s]", + self.type, child.child_handle, self.sender, self.recipient) def serve_error(self, exception): """ |