Skip to content

Commit

Permalink
Merge pull request bytebeamio#393 from bytebeamio/fix-v5
Browse files Browse the repository at this point in the history
Fix v5
  • Loading branch information
de-sh committed May 12, 2022
2 parents 5d3d1e8 + 32a73ce commit 11f1d38
Show file tree
Hide file tree
Showing 36 changed files with 8,119 additions and 88 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Expand Up @@ -2,6 +2,10 @@ on:
pull_request:
branches:
- master
paths:
- '**.rs'
- 'Cargo.*'
- '*/Cargo.*'

name: Build and Test

Expand Down
69 changes: 65 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions benchmarks/clients/mesh.rs
Expand Up @@ -3,7 +3,7 @@ use tokio::task;
use std::thread;
use std::path::PathBuf;
use bytes::Bytes;
use rumqttlog::router::{Data};
use rumqttlog::router::Data;

mod common;

Expand Down Expand Up @@ -74,5 +74,3 @@ async fn read(tx: Sender<(usize, RouterInMessage)>) {

println!("Id = {}, Total size = {}", id, total_size);
}


3 changes: 2 additions & 1 deletion benchmarks/clients/rumqttasync.rs
@@ -1,4 +1,5 @@
use rumqttc::*;
use rumqttc::{AsyncClient, Event, Incoming, MqttOptions, QoS};

use std::error::Error;
use std::time::{Duration, Instant};

Expand Down
3 changes: 2 additions & 1 deletion benchmarks/clients/rumqttasyncqos0.rs
@@ -1,4 +1,5 @@
use rumqttc::*;
use rumqttc::{AsyncClient, Event, Incoming, MqttOptions, QoS};

use std::error::Error;
use std::time::{Duration, Instant};

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/clients/rumqttsync.rs
@@ -1,4 +1,4 @@
use rumqttc::{self, Client, Event, Incoming, MqttOptions, QoS};
use rumqttc::{Client, Event, Incoming, MqttOptions, QoS};
use std::error::Error;
use std::thread;
use std::time::{Duration, Instant};
Expand Down

0 comments on commit 11f1d38

Please sign in to comment.