Skip to content

Commit

Permalink
fixup! Fix: All node metrics were returned by default
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh committed Jan 24, 2024
1 parent 6643264 commit 367b2a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aleph/web/controllers/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ async def metrics_json(request: web.Request) -> web.Response:


class Metrics(BaseModel):
start_date: Optional[float] = None
end_date: Optional[float] = None
start_timestamp: Optional[float] = None
end_timestamp: Optional[float] = None
sort: Optional[str] = None


Expand Down

0 comments on commit 367b2a5

Please sign in to comment.