Skip to content

Commit 0d474fd

Browse files
Update crates/taurus/src/remote/mod.rs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Raphael Götz <52959657+raphael-goetz@users.noreply.github.com>
1 parent 0f57e37 commit 0d474fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/taurus/src/remote

crates/taurus/src/remote/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ impl RemoteRuntime for RemoteNatsClient {
2626
) -> Result<Value, RuntimeError> {
2727
let topic = format!("action.{}.{}", remote_name, request.execution_identifier);
2828
let payload = request.encode_to_vec();
29-
let res = self.client.request(topic.clone(), payload.into()).await;
3029
log::info!("Publishing to topic: {}", topic);
30+
let res = self.client.request(topic, payload.into()).await;
3131
let message = match res {
3232
Ok(r) => r,
3333
Err(err) => {

0 commit comments

Comments
 (0)