Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lib/iris/dashboard/src/components/shared/LogViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ const filteredLogs = computed(() => {
<option :value="1000">1,000 lines</option>
<option :value="5000">5,000 lines</option>
<option :value="10000">10,000 lines</option>
<option :value="0">All</option>
</select>
<select
v-if="attempts && attempts.length > 0"
Expand Down
2 changes: 1 addition & 1 deletion lib/iris/src/iris/cluster/controller/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
logger = logging.getLogger(__name__)

DEFAULT_TRANSACTION_LIMIT = 50
DEFAULT_MAX_TOTAL_LINES = 10000
DEFAULT_MAX_TOTAL_LINES = 100000

# Maximum bundle size in bytes (25 MB) - matches client-side limit
MAX_BUNDLE_SIZE_BYTES = 25 * 1024 * 1024
Expand Down
Loading