Properly handle FieldAttribute.default if callable (#48992)

* Properly handle FieldAttribute.default if callable

Fixes #48673

* Add changelog...

* Add integration test

* Add aliases file
This commit is contained in:
Martin Krizek 2018-11-26 18:14:46 +01:00 committed by GitHub
commit 48ffd8789f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 2 deletions

View file

@ -0,0 +1,4 @@
- hosts: localhost
serial: "{{ testing_omitted_variable | default(omit) }}"
tasks:
- debug:

View file

@ -0,0 +1 @@
shippable/posix/group3

View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -eux
ansible-playbook 48673.yml -i ../../inventory -v "$@"