Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brayniac committed Sep 25, 2024
1 parent 4c1e62e commit 01daf29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/clients/oltp/mysql/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub fn launch_tasks(
config: Config,
work_receiver: Receiver<ClientWorkItemKind<OltpRequest>>,
) {
debug!("launching mysql protocol tasks");
info!("launching mysql protocol tasks");

for _ in 0..config.client().unwrap().poolsize() {
for endpoint in config.target().endpoints() {
Expand Down
2 changes: 1 addition & 1 deletion src/workload/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ impl Generator {

let request = OltpRequest::PointSelect(oltp::PointSelect {
id,
table,
table: format!("sbtest{table}"),
});

ClientWorkItemKind::Request {
Expand Down
2 changes: 1 addition & 1 deletion src/workload/oltp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ pub enum OltpRequest {
#[derive(Debug, PartialEq)]
pub struct PointSelect {
pub id: i32,
pub table: i32,
pub table: String,
}

0 comments on commit 01daf29

Please sign in to comment.