Alan Rominger

Results 284 comments of Alan Rominger

Right, let's look at the details of what this migration does. For this I'm using a local sqlite3 database for testing. ``` $ python -m django sqlmigrate taggit 0006 --settings=tests.settings...

Seems like this would be better a timeout config for Ansible become plugins generally. It could be set statically for runner to a relatively low value if they did that....

It may be possible to ignore the error in this particular case... But I'm wondering if this is just one more consequence of https://github.com/ansible/ansible-runner/issues/493. I guess there's no way to...

I believe it was introduced in https://github.com/ansible/ansible-runner/pull/490, which was for introducing the adhoc / playbook commands. That wording references commands like `ansible-runner playbook`, which are commands that were removed. My...

If you use a null project, that means the user would manually type in the FQCN for the playbook. That should work, but it is in-congruent with the current user...

This will only work with #763 if you change you method of specifying the callback to the env var ```python original_stdout_callback = os.getenv('ANSIBLE_STDOUT_CALLBACK') ``` I have other issues complaining about...

Also link https://forum.ansible.com/t/info-on-awx-rbac-changes-pending-release/5104 A release with these changes may be going out today / tomorrow.

Linking as a tie-in to this issue: https://github.com/ansible/receptor/issues/736#issuecomment-1494789234 We have a _painful_ bug in reporting error details when a container_group job pod fails. This is actually a very major problem...

Could somebody give a little bit of clarification on what this issue means? I will explain where I am coming from. As a newcomer, I'm trying to read the nuts-and-bolts...

I hit a version of this issue because we had existing non-async code using [an old recipe for psycopg2](https://www.psycopg.org/docs/advanced.html#asynchronous-notifications). In that case, using `select.select` you wait until notification(s) come, and...