File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ def publish(self, clear_load):
229229 '''
230230 if not clear_load .pop ('key' ) == self .key :
231231 return ''
232- jid = self ._prep_jid (load )
232+ jid = self ._prep_jid (clear_load )
233233 payload = {'enc' : 'aes' }
234234 load = {
235235 'fun' : clear_load ['fun' ],
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ def _handle_aes(self, load):
135135 return ret
136136 # Verify that the publication applies to this minion
137137 if data .has_key ('tgt_type' ):
138- if not getattr (self , '_' + data ['tgt_type' ] + '_match' )(* ( data ['tgt' ]) ):
138+ if not getattr (self , '_' + data ['tgt_type' ] + '_match' )(data ['tgt' ]):
139139 return ret
140140 else :
141141 if not self ._glob_match (data ['tgt' ]):
You can’t perform that action at this time.
0 commit comments