rmbolger / Posh-IBWAPI

PowerShell module for interacting with the Infoblox WAPI (REST API).
MIT License
54 stars 8 forks source link

Prevent WAPI errors thrown during pipeline processing from terminating the pipeline #60

Closed rmbolger closed 2 years ago

rmbolger commented 2 years ago

Due to the way errors are currently handled, when processing multiple operations using pipeline input to various functions, an error thrown by one WAPI call will terminate the processing of the rest of the pipeline. Instead, it should emit an error record for that call and continue processing which is how pipeline operations generally work in PowerShell.

This would technically be a breaking change and should be deferred until the next major version release.

rmbolger commented 2 years ago

This is now being tested in the 4x branch.