Skip to content

Commit

Permalink
Merge branch 'fix-broken-router-info-page-prefixes-query-link' into f…
Browse files Browse the repository at this point in the history
…ix-incorrect-count-on-router-list-page
  • Loading branch information
ximon18 committed Sep 15, 2023
2 parents b314499 + 5096f6c commit 72e3df0
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 9 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: ci

on:
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
4 changes: 2 additions & 2 deletions etc/rotonda.conf
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ log_file = "./rotonda.log" # used if log_target is "file"
# Setting Description
# ========================================================================
# listen The "<IP ADDRESS>:<PORT>" to listen on for
# incoming BMP connections from routers.
# incoming BGP connections from BGP speakers.
#
# my_asn The positive number of the Autonomous System in
# which this instance of Rotonda is operating and
# which will be sent by this BGP speaker in its
# RFC 4271 BGP OPEN messagein the "My Autonomous
# RFC 4271 BGP OPEN message in the "My Autonomous
# Number" field [3].
#
# my_bgp_id An array of four positive integer numbers, e.g.
Expand Down
5 changes: 0 additions & 5 deletions src/targets/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ mod bmp_tcp_out;
#[cfg(feature = "mqtt")]
mod mqtt;
mod null;
// mod rotoro;

// pub use rotoro::{RotoroCoder, RotoroCommand, WireMsg};
use tokio::sync::mpsc;

//------------ Target --------------------------------------------------------
Expand All @@ -46,8 +44,6 @@ pub enum Target {
#[serde(rename = "mqtt-out")]
Mqtt(mqtt::target::Mqtt),

// #[serde(rename = "rotoro-out")]
// Rotoro(rotoro::Target),
#[serde(rename = "null-out")]
Null(null::Target),
}
Expand All @@ -65,7 +61,6 @@ impl Target {
Target::BmpTcpOut(target) => target.run(component, cmd, waitpoint).await,
#[cfg(feature = "mqtt")]
Target::Mqtt(target) => target.run(component, cmd, waitpoint).await,
// Target::Rotoro(target) => target.run(component, cmd).await,
Target::Null(target) => target.run(component, cmd, waitpoint).await,
}
}
Expand Down
2 changes: 0 additions & 2 deletions src/units/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ pub enum Unit {
#[serde(rename = "filter")]
Filter(filter::unit::Filter),

// #[serde(rename = "rotoro-in")]
// Rotoro(rotoro::unit::RotoroIn),
#[serde(rename = "bmp-in")]
BmpIn(bmp_in::unit::BmpIn),

Expand Down

0 comments on commit 72e3df0

Please sign in to comment.