Skip to content

Commit 40ddd13

Browse files
Remove AMIE protobuf stubs and processing_events.payload column
1 parent 753e1bd commit 40ddd13

14 files changed

Lines changed: 14 additions & 3571 deletions

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ The shape generalizes: a new connector that needs to record connector-specific r
6161

6262
* Go 1.24+
6363
* Docker and Docker Compose
64-
* `protoc` and `protoc-gen-go` (only needed when regenerating proto sources)
6564

6665
## Quick Start
6766

connectors/ACCESS/AMIE-Processor/db/migrations/000001_initial_schema.up.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ CREATE TABLE IF NOT EXISTS amie_processing_events
4343
type VARCHAR(64) NOT NULL,
4444
status VARCHAR(32) NOT NULL,
4545
attempts INT NOT NULL DEFAULT 0,
46-
payload LONGBLOB NOT NULL,
4746
created_at TIMESTAMP(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
4847
started_at TIMESTAMP(6) NULL,
4948
finished_at TIMESTAMP(6) NULL,

connectors/ACCESS/AMIE-Processor/model/event.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ type ProcessingEvent struct {
4545
Type ProcessingEventType `db:"type" json:"type"`
4646
Status ProcessingStatus `db:"status" json:"status"`
4747
Attempts int `db:"attempts" json:"attempts"`
48-
Payload []byte `db:"payload" json:"-"`
4948
CreatedAt time.Time `db:"created_at" json:"created_at"`
5049
StartedAt *time.Time `db:"started_at" json:"started_at,omitempty"`
5150
FinishedAt *time.Time `db:"finished_at" json:"finished_at,omitempty"`

connectors/ACCESS/AMIE-Processor/proto/amie_packets.proto

Lines changed: 0 additions & 171 deletions
This file was deleted.

0 commit comments

Comments
 (0)