Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding visibility into current mirror state #971

Merged
merged 5 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
minor fixes pt.1
  • Loading branch information
heavycrystal committed Jan 3, 2024
commit e6c03b0a6e4869277176cb2e6d498644031fd892
1 change: 1 addition & 0 deletions nexus/flow-rs/src/grpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ impl FlowGrpcClient {
requested_flow_state: state.into(),
source_peer: Some(workflow_details.source_peer),
destination_peer: Some(workflow_details.destination_peer),
flow_state_update: None
};
let response = self.client.flow_state_change(state_change_req).await?;
let state_change_response = response.into_inner();
Expand Down
2 changes: 1 addition & 1 deletion protos/flow.proto
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ enum FlowStatus {
message CDCFlowStateUpdate {
}

message QRepFlowStateUpdate {
message QRepFlowStateUpdate {
}

message FlowStateUpdate {
Expand Down
2 changes: 1 addition & 1 deletion protos/route.proto
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ message FlowStateChangeRequest {
peerdb_peers.Peer source_peer = 3;
peerdb_peers.Peer destination_peer = 4;
// only can be sent in certain situations
peerdb_flow.FlowStateUpdate flow_state_update = 5;
optional peerdb_flow.FlowStateUpdate flow_state_update = 5;
}

message FlowStateChangeResponse {
Expand Down
Loading