Skip to content

Commit

Permalink
Wait less time when syncing
Browse files Browse the repository at this point in the history
  • Loading branch information
mgao6767 committed Sep 27, 2024
1 parent 366d318 commit f3e7ea4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/kerko/config_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class Config:

batch_size: int = Field(ge=20)
max_attempts: int = Field(ge=1)
wait: int = Field(ge=120)
wait: int = Field(ge=10)
csl_style: str
locale: str = Field(regex=r"^[a-z]{2,3}-[A-Za-z]+$")
item_include_re: str
Expand Down
2 changes: 1 addition & 1 deletion src/kerko/default_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ atom_feed = "kerko/atom.xml.jinja2"

batch_size = 100
max_attempts = 10
wait = 120 # In seconds.
wait = 10 # In seconds.

csl_style = "apa"
locale = "en-US"
Expand Down

0 comments on commit f3e7ea4

Please sign in to comment.