Verified Commit fa91fc91 authored by Michael Angelo Rivera's avatar Michael Angelo Rivera Committed by GitLab
Browse files

fix: update siphon proto filename and exclude output/ from lychee

parent 03812719
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -114,7 +114,7 @@ check-docs:
  script:
    - markdownlint-cli2 '**/*.md'
    - vale --minAlertLevel error .
    - lychee --offline --include-fragments '**/*.md'
    - lychee --offline --include-fragments --exclude-path output '**/*.md'

fmt-check:
  stage: lint
+1 −0
Original line number Diff line number Diff line
@@ -105,6 +105,7 @@ mod tests {
            application_identifier: "test".to_string(),
            events: vec![event],
            columns: columns.into_iter().map(String::from).collect(),
            version_hash: 0,
        }
    }

+1 −0
Original line number Diff line number Diff line
@@ -85,6 +85,7 @@ pub fn build_replication_events(events: Vec<(Vec<String>, ReplicationEvent)>) ->
        application_identifier: "test".to_string(),
        events,
        columns: column_names,
        version_hash: 0,
    };

    let encoded = payload.encode_to_vec();
+1 −0
Original line number Diff line number Diff line
@@ -159,6 +159,7 @@ fn push_event_payload(project_id: i64, commit_sha: &str, event_id: i64) -> Bytes
            operation: 2,
            columns,
        }],
        version_hash: 0,
    }
    .encode_to_vec();

+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ fn regenerate_protos() {
        format!("{proto_dir}/siphon/v1/text_array.proto"),
        format!("{proto_dir}/siphon/v1/value.proto"),
        format!("{proto_dir}/siphon/v1/replication_event.proto"),
        format!("{proto_dir}/siphon/v1/repl_events.proto"),
        format!("{proto_dir}/siphon/v1/replication_events.proto"),
    ];

    if let Ok(protoc) = protoc_bin_vendored::protoc_bin_path() {
Loading