Skip to content

Commit

Permalink
Released
Browse files Browse the repository at this point in the history
2020-05-25 GUARD-617 ShipStation-High-Threads-Consumption
  • Loading branch information
fabulaspb authored and maxim-skuvault committed Jun 30, 2020
2 parents 388dc45 + 3b0760a commit 4797432
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Global/GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

[ assembly : ComVisible( false ) ]
[ assembly : AssemblyProduct( "ShipStationAccess" ) ]
[ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ]
[ assembly : AssemblyCopyright( "Copyright (C) Agile Harbor, LLC" ) ]
[ assembly : AssemblyCompany( "SkuVault Inc." ) ]
[ assembly : AssemblyCopyright( "Copyright (C) SkuVault Inc. 2020" ) ]
[ assembly : AssemblyDescription( "ShipStation webservices API wrapper." ) ]
[ assembly : AssemblyTrademark( "" ) ]
[ assembly : AssemblyCulture( "" ) ]
Expand All @@ -23,4 +23,4 @@
// [assembly: AssemblyVersion("1.0.*")]

// Keep in track with CA API version
[ assembly : AssemblyVersion( "1.3.83.0" ) ]
[ assembly : AssemblyVersion( "1.3.84.0" ) ]
2 changes: 1 addition & 1 deletion src/ShipStationAccess/V2/ShipStationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public async Task< IEnumerable< ShipStationOrder > > GetOrdersAsync( DateTime da

Func< ShipStationOrders, Task > processOrders = async sorders =>
{
var processedOrders = await sorders.Orders.ProcessInBatchAsync( 50, async o =>
var processedOrders = await sorders.Orders.ProcessInBatchAsync( 5, async o =>
{
var curOrder = o;
if( processedOrderIds.Contains( curOrder.OrderId ) )
Expand Down

0 comments on commit 4797432

Please sign in to comment.