Skip to content

Commit f137a5b

Browse files
committed
fixed bug: schedule's return's log is wrong order
before: [INFO ] Job local_return using invalid returner: state.highstate Ignoring. after: [INFO ] Job state.highstate using invalid returner: local_return Ignoring.
1 parent bc70887 commit f137a5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

salt/utils/schedule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def handle_func(self, func, data):
9999
self.returners['{0}.returner'.format(returner)](ret)
100100
else:
101101
log.info(
102-
'Job {1} using invalid returner: {0} Ignoring.'.format(
102+
'Job {0} using invalid returner: {1} Ignoring.'.format(
103103
func, returner
104104
)
105105
)

0 commit comments

Comments
 (0)