-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): Fixes Branch get Limit up to 500 (#3036)
* fix(dui): Bumps branch limit to 500 everywhere it's needed in DUI * feat: Created `ServerLimits` static class * test(core): Added unit tests for branch limits * fix: Branch limit integration tests. * fix: Lower parallelism and add env var to server config * fix: Removes env var from compose file * Revert "fix: Removes env var from compose file" This reverts commit 8f3dca7.
- Loading branch information
Showing
6 changed files
with
68 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Speckle.Core.Api; | ||
|
||
/// <summary> | ||
/// Defines the limits for specific API calls on the Speckle Server. | ||
/// These are magic numbers! Should be aligned with server always. | ||
/// </summary> | ||
/// <remarks> | ||
/// ⚠️ Not all limits are reflected here! | ||
/// </remarks> | ||
public static class ServerLimits | ||
{ | ||
public const int BRANCH_GET_LIMIT = 500; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters