We implemented the recommendations, but depending on the size of the product upsert, we are still getting this error in the production portal
The portal where there are 7566 products (IU), we get this error (it upserted 5960 products)
The portal where there are 1501 products (BAYFC), we do NOT get any error.
Here is how I set up the Client in the code
var client = new SquareClient.Builder()
.Environment(Square.Environment.Production)
.AccessToken(_venue.ApiToken)
.HttpClientConfig(config => config
.NumberOfRetries(5)
.Timeout(TimeSpan.FromSeconds(3600)))
.Build();
Do you have any suggestions on what we can do to prevent this error now matter how big the catalog is?
Please let me know if you need any more information.
Thanks,
Michael
5 posts - 3 participants