Skip to content

Commit

Permalink
removed unused flag
Browse files Browse the repository at this point in the history
  • Loading branch information
cmendible committed Jun 22, 2023
1 parent 8f11e6e commit c4d2cfb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 27 deletions.
27 changes: 1 addition & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,31 +135,6 @@ Azure Quick Review (azqr) creates an excel spreadsheet with the results of the s
Check the [Azure Quick Review Scan Results](docs/scan_results/README.md) documentation for more information.

## Troubleshooting

### Error: "RESPONSE 429: 429 Too Many Requests"

If the output of `azqr` shows an error similar to the following:

```bash
--------------------------------------------------------------------------------
RESPONSE 429: 429 Too Many Requests
ERROR CODE: ResourceRequestsThrottled
--------------------------------------------------------------------------------
{
  "error": {
    "code": "ResourceRequestsThrottled",
    "message": "Number of requests for action 'Microsoft.Cdn/profiles/read' exceeded the limit of '50' for time interval '00:05:00'. Please try again after '372' seconds."
  }
}
```
Reduce the number of parallel requests that `azqr` is making. You can do this by setting the value of the `-p` parameter to `false` as in the following example:
```bash
./azqr scan -s <subscription_id> -p=false
```
## Support

This project uses GitHub Issues to track bugs and feature requests.
Expand All @@ -177,7 +152,7 @@ Support for this project / product is limited to the resources listed above.
Thanks to everyone who has contributed!

<a href="https://github.com/Azure/azqr/graphs/contributors">
<img src="https://contributors-img.web.app/image?repo=cmendible/azqr" />
<img src="https://contributors-img.web.app/image?repo=Azure/azqr" />
</a>

## Code of Conduct
Expand Down
1 change: 0 additions & 1 deletion cmd/azqr/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ func init() {
scanCmd.PersistentFlags().BoolP("costs", "c", false, "Scan Azure Costs")
scanCmd.PersistentFlags().StringP("output-prefix", "o", "azqr_report", "Output file prefix")
scanCmd.PersistentFlags().BoolP("mask", "m", true, "Mask the subscription id in the report")
scanCmd.PersistentFlags().BoolP("parallel-processes", "p", true, "Use parallel processes to run scans")
rootCmd.AddCommand(scanCmd)
}

Expand Down

0 comments on commit c4d2cfb

Please sign in to comment.