@@ -365,7 +365,7 @@ func (m *progressModel) countNextTable() tea.Cmd {
365365 // Done counting all tables - clean expired entries and save cache
366366 if m .partitionCache != nil && m .config != nil {
367367 m .partitionCache .cleanExpired ()
368- m .partitionCache .save (m .config .Table )
368+ _ = m .partitionCache .save (m .config .Table )
369369 }
370370 return func () tea.Msg {
371371 return partitionsFoundMsg {partitions : m .countedPartitions }
@@ -395,7 +395,7 @@ func (m *progressModel) countNextTable() tea.Cmd {
395395 if m .partitionCache != nil {
396396 m .partitionCache .setRowCount (table .name , count )
397397 // Save cache immediately after updating
398- m .partitionCache .save (m .config .Table )
398+ _ = m .partitionCache .save (m .config .Table )
399399 }
400400 } else {
401401 // Even on error, continue to next table
@@ -547,10 +547,6 @@ func (m progressModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
547547 // Check if we need to transition phases based on the message
548548 if strings .Contains (msgStr , "✅ Table permissions verified" ) && m .phase == PhaseCheckingPermissions {
549549 // Add S3 connection message
550- s3Endpoint := m .config .S3 .Endpoint
551- if s3Endpoint == "" {
552- s3Endpoint = "AWS S3"
553- }
554550 m .messages = append (m .messages , fmt .Sprintf ("✅ Connected to S3 at s3://%s" , m .config .S3 .Bucket ))
555551 if len (m .messages ) > 10 {
556552 m .messages = m .messages [len (m .messages )- 10 :]
0 commit comments