Skip to content

Commit

Permalink
make requested changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquingx committed Oct 9, 2023
1 parent 48c1ef8 commit 4df64d3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions estela-api/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,11 +301,17 @@ class SpiderJob(models.Model):
request_count = models.PositiveBigIntegerField(
default=0, help_text="The number of requests made by the spider job."
)
# proy_usage_data follows this format:
#{
# "proxy_name": <proxy_name>,
# "bytes": <bytes>,
#}
proxy_usage_data = models.JSONField(
default=dict,
help_text="Proxy Usage data.",
)


class Meta:
ordering = ["-created"]

Expand Down

0 comments on commit 4df64d3

Please sign in to comment.