Skip to content

Commit

Permalink
Fix value length typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquingx committed Jan 21, 2025
1 parent 8b6792a commit 00ce793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion estela-api/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def __str__(self):
help_text="Spider sid.",
)
name = models.CharField(max_length=1000, help_text="Env variable name.")
value = models.CharField(max_length=10000, help_text="Env variable value.")
value = models.CharField(max_length=12000, help_text="Env variable value.")
masked = models.BooleanField(
default=False, help_text="Whether the env variable value is masked."
)
Expand Down

0 comments on commit 00ce793

Please sign in to comment.