Browse Source

fix(relocation): Bump user limit (#69315)

Alex Zaslavsky 10 months ago
parent
commit
f607aca553
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/tasks/relocation.py

+ 1 - 1
src/sentry/tasks/relocation.py

@@ -81,7 +81,7 @@ MAX_VALIDATION_RUNS = 3
 
 # Some reasonable limits on the amount of data we import - we can adjust these as needed.
 MAX_ORGS_PER_RELOCATION = 20
-MAX_USERS_PER_RELOCATION = 200
+MAX_USERS_PER_RELOCATION = 2000
 
 RELOCATION_FILES_TO_BE_VALIDATED = [
     RelocationFile.Kind.BASELINE_CONFIG_VALIDATION_DATA,