Skip to content
This repository has been archived by the owner on Jul 12, 2021. It is now read-only.

Commit

Permalink
Increased max number of archived events
Browse files Browse the repository at this point in the history
  • Loading branch information
claustres committed Mar 5, 2020
1 parent 99500e3 commit a81a9b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/components/KArchivedEventsActivity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ import { mixins as kCoreMixins, utils as kCoreUtils } from '@kalisio/kdk-core/cl
import { mixins as kMapMixins } from '@kalisio/kdk-map/client.map'
// For mapping or statistics we get all events at once to avoid managing pagination
const MAX_EVENTS = 3000
const MAX_EVENTS = 5000
const activityMixin = kMapMixins.activity('archivedEvents')
export default {
Expand Down
2 changes: 1 addition & 1 deletion src/services/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function createArchivedEventService (options = {}) {
app.createService('archived-events', Object.assign({
servicesPath,
modelsPath,
paginate: { default: 20, max: 3000 }
paginate: { default: 20, max: 5000 }
}, options))
}

Expand Down

0 comments on commit a81a9b3

Please sign in to comment.