From 3e387a143a3789a91df8980a0905e27347c32764 Mon Sep 17 00:00:00 2001 From: Denis Subbotin Date: Wed, 5 Feb 2020 17:33:08 +0300 Subject: [PATCH] increase queue size --- README.md | 2 +- plugin/pki/path_roles.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 619990c8..e8926989 100644 --- a/README.md +++ b/README.md @@ -249,7 +249,7 @@ The following options are supported (note: this list can also be viewed from the | `tpp_password` | string | Venafi Platform WebSDK account password | | | `trust_bundle_file` | string | PEM trust bundle for Venafi Platform server certificate | | | `venafi_import_timeout` | int | Maximum wait in seconds before re-attempting certificate import from queue | 15 | -| `venafi_import_workers` | int | Maximum number of concurrent threads to use for VCert import | 3 | +| `venafi_import_workers` | int | Maximum number of concurrent threads to use for VCert import | 12 | | `venafi_check_policy` | string | Which Venafi policy check to use | "default" | ### Import Queue diff --git a/plugin/pki/path_roles.go b/plugin/pki/path_roles.go index 8245fa77..7404f251 100644 --- a/plugin/pki/path_roles.go +++ b/plugin/pki/path_roles.go @@ -350,12 +350,12 @@ Example: }, "venafi_import_workers": { Type: framework.TypeInt, - Default: 3, + Default: 12, Description: `Max amount of simultaneously working instances of vcert import`, }, "tpp_import_workers": { // todo: deprecated. should be removed Type: framework.TypeInt, - Default: 3, + Default: 12, Description: `Max amount of simultaneously working instances of vcert import`, }, "venafi_check_policy": {