Matthew Kelly
Matthew Kelly
> specify the maximum number of threads that each route can execute, which is a crucial feature. Some routes cannot be run concurrently or must have a limited number of...
I'm back from holiday, so I'll begin reviewing this one and the Runspace one as soon as I can :)
Hey @mdaneri, I'm gradually getting through the review, just a slow one atm! Please try not to commit anything to the PR while I go through, as it'll confuse the...
Hey @Dylan-Prins, It looks like you're using OAuth with AAD? There's a write-up of it here: https://badgerati.github.io/Pode/Tutorials/Authentication/Inbuilt/AzureAD/#full-example The `$accessToken` will be available as a parameter to the scriptblock supplied to...
I've transferred the issue over to Pode, as this bug is within Pode itself. @Ankit-Sharma-ggn, does the following work instead? ```bash /usr/sbin/realm list --name-only ``` If not, do you happen...
Hey @phdavis, I've an idea as to what might be causing it based on the first exception, but need a lil' more info: * Are there any other Pode functions...
I've just tried reproducing this myself, but I can't get it to throw any errors - all loads for me. While researching the error, I found that the `Collection was...
Hi @icabraja, It's because `New-Item` returns a value, and this is being returned from the scriptblock to Pode.Web which tries to parse it as an "Action". If you pipe or...
Hi @CharEmMech, Is this line: ```powershell if ($cert.Thumbprint -eq '') { ``` meant to be the following instead? as the above will throw a 401 if the cert has a...