keon94 commented on issue #6469:
URL: 
https://github.com/apache/incubator-devlake/issues/6469#issuecomment-1832922850

   @KlemenDanfoss 
   We'll need to narrow this down. Please paste this into a test python file 
inside `backend/python/plugins/azuredevops` and run it (after filling out the 
variables). Does it fail in the same way?
   
   ```python
   from azuredevops.main import AzureDevOpsPlugin
   from azuredevops.models import AzureDevOpsConnection
   
   # assign values to these variables
   token = 'yb53ildbtcvy54ct6ujieqc6okizohj5bbeqju2vjvy63mwhswya'
   organization = 'keon-org1'
   project = 'test-project'
   #####################################
   
   plugin_instance = AzureDevOpsPlugin()
   
   connection = AzureDevOpsConnection(name='test', token=token, 
organization=organization)
   group_id = organization + '/' + project
   scopes = list(plugin_instance.remote_scopes(connection, group_id))
   
   print(scopes)
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to