Trigger build
This commit is contained in:
6
.github/workflows/build-rhel7.yml
vendored
6
.github/workflows/build-rhel7.yml
vendored
@@ -1,8 +1,8 @@
|
||||
name: build-daqingest-rhel7
|
||||
on:
|
||||
# push:
|
||||
# tags:
|
||||
# - buildaction
|
||||
push:
|
||||
tags:
|
||||
- buildaction
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
flags:
|
||||
|
||||
@@ -143,7 +143,16 @@ impl CaConnSet {
|
||||
Ok(())
|
||||
}
|
||||
},
|
||||
CaConnSetEvent::CaConnEvent((addr, ev)) => todo!(),
|
||||
CaConnSetEvent::CaConnEvent((addr, ev)) => match ev.value {
|
||||
CaConnEventValue::None => Ok(()),
|
||||
CaConnEventValue::EchoTimeout => todo!(),
|
||||
CaConnEventValue::ConnCommandResult(_) => todo!(),
|
||||
CaConnEventValue::QueryItem(item) => {
|
||||
self.storage_insert_tx.send(item).await?;
|
||||
Ok(())
|
||||
}
|
||||
CaConnEventValue::EndOfStream => todo!(),
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user