This is autogenerated. Please review and update as needed.
Describe the bug
Command Name
az webapp create
Errors:
The command failed with an unexpected error. Here is the traceback:
update_site_config() takes 2 positional arguments but 3 were given
Traceback (most recent call last):
File "/opt/az/lib/python3.6/site-packages/knack/cli.py", line 206, in invoke
cmd_result = self.invocation.execute(args)
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/commands/__init__.py", line 608, in execute
raise ex
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/commands/__init__.py", line 666, in _run_jobs_serially results.append(self._run_job(expanded_arg, cmd_copy))
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/commands/__init__.py", line 657, in _run_job
cmd_copy.exception_handler(ex)
File "/opt/az/lib/python3.6/site-packages/azure/cli/command_modules/appservice/commands.py", line 55, in _polish_bad_errors
raise ex
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/commands/__init__.py", line 636, in _run_job
result = cmd_copy(params)
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/commands/__init__.py", line 306, in __call__
return self.handler(*args, **kwargs)
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/__init__.py", line 493, in default_command_handler
return op(**command_args)
File "/opt/az/lib/python3.6/site-packages/azure/cli/command_modules/appservice/custom.py", line 135, in create_webapp match['setter'](cmd, match, site_config)
TypeError: update_site_config() takes 2 positional arguments but 3 were given
To Reproduce:
Steps to reproduce the behavior. Note that argument values have been redacted, as they may contain sensitive information.
- Put any pre-requisite steps here...
az webapp create -g $RESOURCE_GROUP -n $SITE_NAME -p $PLAN_NAME -r "java|1.8|Tomcat|8.5"
note: not only for java|1.8|Tomcat|8.5
Expected Behavior
Environment Summary
Linux-4.4.0-18362-Microsoft-x86_64-with-debian-stretch-sid
Python 3.6.5
azure-cli 2.1.0
Additional Context
This is similar with #12229 .
But this happens on Azure CLI v2.1.0 and seems that this depends on runtime specified in the command.
I tried other runtimes, then creating with most of runtimes (except node|x.y) was failed.
This is autogenerated. Please review and update as needed.
Describe the bug
Command Name
az webapp createErrors:
To Reproduce:
Steps to reproduce the behavior. Note that argument values have been redacted, as they may contain sensitive information.
az webapp create -g $RESOURCE_GROUP -n $SITE_NAME -p $PLAN_NAME -r "java|1.8|Tomcat|8.5"note: not only for
java|1.8|Tomcat|8.5Expected Behavior
Environment Summary
Additional Context
This is similar with #12229 .
But this happens on Azure CLI v2.1.0 and seems that this depends on runtime specified in the command.
I tried other runtimes, then creating with most of runtimes (except
node|x.y) was failed.