Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jianoaix committed Feb 18, 2025
1 parent 5ad1e87 commit c7a4d79
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions disperser/dataapi/v2/blobs.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ import (
// @Summary Fetch blob feed forward in time (oldest to newest)
// @Tags Blobs
// @Produce json
// @Param after query string false "Fetch blobs after this time (ISO 8601 format) [default: until - 1h]"
// @Param until query string false "Stop fetching at this time (ISO 8601 format) [default: now]"
// @Param cursor query string false "Pagination cursor for fetching newer items; override after [default: empty]"
// @Param after query string false "Fetch blobs after this time (ISO 8601 format: 2006-01-02T15:04:05Z) [default: until - 1h]"
// @Param until query string false "Stop fetching at this time (ISO 8601 format: 2006-01-02T15:04:05Z) [default: now]"
// @Param cursor query string false "Pagination cursor for fetching newer items; override after param [default: empty]"
// @Param limit query int false "Maximum number of blobs to fetch [default: 20; max: 1000]"
// @Success 200 {object} BlobFeedResponse
// @Failure 400 {object} ErrorResponse "error: Bad request"
Expand Down Expand Up @@ -115,9 +115,9 @@ func (s *ServerV2) FetchBlobFeedForward(c *gin.Context) {
// @Summary Fetch blob feed backward in time (newest to oldest)
// @Tags Blobs
// @Produce json
// @Param before query string false "Fetch blobs before this time (ISO 8601 format) [default: now]"
// @Param until query string false "Stop fetching at this time (ISO 8601 format) [default: now-1h]"
// @Param cursor query string false "Pagination cursor for fetching older items; override before [default: empty]"
// @Param before query string false "Fetch blobs before this time (ISO 8601 format: 2006-01-02T15:04:05Z) [default: now]"
// @Param until query string false "Stop fetching at this time (ISO 8601 format: 2006-01-02T15:04:05Z) [default: before - 1h]"
// @Param cursor query string false "Pagination cursor for fetching older items; override before param [default: empty]"
// @Param limit query int false "Maximum number of blobs to fetch [default: 20; max: 1000]"
// @Success 200 {object} BlobFeedResponse
// @Failure 400 {object} ErrorResponse "error: Bad request"
Expand Down

0 comments on commit c7a4d79

Please sign in to comment.