106
106
class SmartServerBranchSetTagsBytes(SmartServerLockedBranchRequest):
108
def __init__(self, backing_transport, root_client_path='/', jail_root=None):
110
self, backing_transport, root_client_path, jail_root)
113
108
def do_with_locked_branch(self, branch):
118
109
# We need to keep this branch locked until we get a body with the tags
124
114
def do_body(self, bytes):
125
115
self.branch._set_tags_bytes(bytes)
126
116
return SuccessfulSmartServerResponse(())
136
120
return SmartServerLockedBranchRequest.do_end(self)