Howard Jones

Results 124 comments of Howard Jones

``` from azure.devops.connection import Connection from msrest.authentication import BasicAuthentication credentials = BasicAuthentication('', ado_personal_access_token) connection = Connection(base_url=organization_url, creds=credentials) pipeline_client = connection.clients_v6_0.get_pipelines_client() pipelist = pipeline_client.list_pipelines("projectname") # pipelist is now a list of...

I am also seeing this issue with 2.6.0 (in my case it's re-running the same playbook to ensure the same users is in the same group as part of a...

``` --- - hosts: localhost connection: local vars: state: present user_obj_id: aaaaaaaa-bbbb-cccc-dddd-a2c785dc0dc8 group_obj_id: aaaaaaaa-bbbb-cccc-dddd-6de8cbd4e560 tasks: - name: Check version of azure.azcollection ansible.builtin.debug: msg: "azure.azcollection version {{ lookup('community.general.collection_version', 'azure.azcollection') }}" -...

Debugging a bit more, it seems that the `get_group_members()` returns an empty list ``` CURRENT [] PRESENT_BY_OBJ {'aaaaaaaa-bbbb-cccc-9de2-a2c785dc0dc8': 'aaaaaaaa-bbbb-cccc-dddd-a2c785dc0dc8'} MEMBERS_TO_ADD ['aaaaaaaa-bbbb-cccc-dddd-a2c785dc0dc8'] ```

I've just added this, for non-opened files (I don't think it can/should be done for generic IO objects). Although I've also found I'm getting a lot of `TypeError: can only...

@alonsocamaro did you get this to work in the end? I'm trying to use q to trace an ansible module, and so far it's just adding to the confusion. Adding...

I just ran into this (I think) - having gotten my gui server just right, I had assumed I would be able to just set the 'core' variable :-/ Has...

For anyone following, logging in by hand and running cmd.exe /c C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -File a:\boxstarter.ps1 again seems to kick everything off again to get to the stage where winrm is enabled....

For Windows, it might not be possible to differentiate attribute and content changes, but it IS possible to filter which events you want. I'm getting "change" events for a directory...

That's what I wasn't sure about - I assume it's a bit less efficient to do it that way. Although the differentiation I'm looking in my application (basically a `grunt...