Skip to content

Commit

Permalink
feat(optimus): add list of ignored jobs or resources in replay and ba…
Browse files Browse the repository at this point in the history
…ckup dry run response
  • Loading branch information
arinda-arif committed Nov 16, 2021
1 parent 7cb7cf7 commit d79397c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion odpf/optimus/runtime_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,9 @@ message ReplayDryRunRequest {

message ReplayDryRunResponse {
bool success = 1;
ReplayExecutionTreeNode response = 2;
ReplayExecutionTreeNode response = 2 [deprecated=true];
ReplayExecutionTreeNode execution_tree = 3;
repeated string ignored_jobs = 4;
}

message ReplayExecutionTreeNode {
Expand Down Expand Up @@ -765,6 +767,7 @@ message BackupDryRunRequest {

message BackupDryRunResponse {
repeated string resource_name = 1;
repeated string ignored_resources = 2;
}

message BackupRequest {
Expand Down

0 comments on commit d79397c

Please sign in to comment.