mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix spurious "Malformed request" error
Since we are invoking _ext_nodes now for backward compatibility, an entry for it needed to be added to the cmd_stub.
This commit is contained in:
parent
43930f8bac
commit
ceb6e10f87
1 changed files with 2 additions and 1 deletions
|
@ -850,7 +850,8 @@ class FSChan(object):
|
|||
self.opts['__fs_update'] = True
|
||||
else:
|
||||
self.fs.update()
|
||||
self.cmd_stub = {'master_tops': {}}
|
||||
self.cmd_stub = {'master_tops': {},
|
||||
'ext_nodes': {}}
|
||||
|
||||
def send(self, load, tries=None, timeout=None, raw=False): # pylint: disable=unused-argument
|
||||
'''
|
||||
|
|
Loading…
Add table
Reference in a new issue