Skip to content

Commit eff0514

Browse files
authored
Fix issues with Post commit in Routing (#8553)
1 parent b0ea0c8 commit eff0514

File tree

1 file changed

+1
-5
lines changed
  • src/network-manager/azext_network_manager/aaz/latest/network/manager

1 file changed

+1
-5
lines changed

src/network-manager/azext_network_manager/aaz/latest/network/manager/_post_commit.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class PostCommit(AAZCommand):
3232

3333
def _handler(self, command_args):
3434
super()._handler(command_args)
35-
return self.build_lro_poller(self._execute_operations, self._output)
35+
return self.build_lro_poller(self._execute_operations, None)
3636

3737
_args_schema = None
3838

@@ -100,10 +100,6 @@ def pre_operations(self):
100100
def post_operations(self):
101101
pass
102102

103-
def _output(self, *args, **kwargs):
104-
result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True)
105-
return result
106-
107103
class NetworkManagerCommitsPost(AAZHttpOperation):
108104
CLIENT_TYPE = "MgmtClient"
109105

0 commit comments

Comments
 (0)