Template context must be populated with key:value pairs

This situation has been on deprecation warning for a while to allow
people time to update their state files. For the Carbon release, we
are switching the warnings over to raise SaltInvocationErrors.
This commit is contained in:
rallytime 2016-08-23 13:55:49 -06:00
parent f3f068be72
commit adc4e0fdfe
2 changed files with 5 additions and 24 deletions

View File

@ -297,6 +297,10 @@ General Deprecations
- The ``salt.minion.parse_args_and_kwargs`` function has been removed. Please
use the ``salt.minion.load_args_and_kwargs`` function instead.
- When passing additional data to be used in a template context, ``context`` must be populated
with ``key: value`` pairs. Users must update their state files accordingly. Previous to this
release, users saw a deprecation warning. Now, a SaltInvocationError is raised instead.
Cloud Deprecations
------------------

View File

@ -1056,17 +1056,6 @@ def format_call(fun,
continue
extra[key] = copy.deepcopy(value)
# We'll be showing errors to the users until Salt Carbon comes out, after
# which, errors will be raised instead.
warn_until(
'Carbon',
'It\'s time to start raising `SaltInvocationError` instead of '
'returning warnings',
# Let's not show the deprecation warning on the console, there's no
# need.
_dont_call_warnings=True
)
if extra:
# Found unexpected keyword arguments, raise an error to the user
if len(extra) == 1:
@ -1090,20 +1079,8 @@ def format_call(fun,
'{0}.{1}'.format(fun.__module__, fun.__name__)
)
)
raise SaltInvocationError(msg)
# Return a warning to the user explaining what's going on
ret.setdefault('warnings', []).append(
'{0}. If you were trying to pass additional data to be used '
'in a template context, please populate \'context\' with '
'\'key: value\' pairs. Your approach will work until Salt '
'Carbon is out.{1}'.format(
msg,
'' if 'full' not in ret else ' Please update your state files.'
)
)
# Lets pack the current extra kwargs as template context
ret.setdefault('context', {}).update(extra)
return ret