Skip to content

Commit

Permalink
fix(transformer): update repository URLs to use the old OCA Repository
Browse files Browse the repository at this point in the history
  • Loading branch information
olichwiruk committed Jul 3, 2024
1 parent 9028633 commit 1364459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conductor/src/transformer/data_set_transformer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ impl Operation {
fn get_operations(source_unit: String, target_unit: String) -> Result<Vec<Operation>, Vec<String>> {
let mut operations = vec![];

let request_url = format!("https://repository.oca.argo.colossi.network/api/v0.1/transformations/units?source={}&target={}",
let request_url = format!("https://repository-old.oca.argo.colossi.network/api/v0.1/transformations/units?source={}&target={}",
source_unit, target_unit);
let response = reqwest::blocking::get(&request_url);
match response {
Expand Down

0 comments on commit 1364459

Please sign in to comment.