diff --git a/tools/endpoint_checker/functions_lookup.py b/tools/endpoint_checker/functions_lookup.py index 3d20de6..55b617d 100644 --- a/tools/endpoint_checker/functions_lookup.py +++ b/tools/endpoint_checker/functions_lookup.py @@ -108,7 +108,6 @@ def save_resource_unidentified_lookups(input_path,dataset,organisations, pipelin # convert phase inputs resource = resource_from_path(input_path) dataset_resource_log = DatasetResourceLog(dataset=dataset, resource=resource) - custom_temp_dir='./var' # normalise phase inputs skip_patterns = pipeline.skip_patterns(resource) @@ -149,7 +148,6 @@ def save_resource_unidentified_lookups(input_path,dataset,organisations, pipelin ConvertPhase( path=input_path, dataset_resource_log=dataset_resource_log, - custom_temp_dir=custom_temp_dir, ), NormalisePhase(skip_patterns=skip_patterns, null_path=null_path), ParsePhase(), diff --git a/tools/endpoint_checker/functions_main.py b/tools/endpoint_checker/functions_main.py index 1513373..b2cbc95 100644 --- a/tools/endpoint_checker/functions_main.py +++ b/tools/endpoint_checker/functions_main.py @@ -94,6 +94,7 @@ def get_workflow_data(data_dir, collection, dataset): "prefix.csv", # deprecated .. "pipeline.csv", + "provision-rule.csv", "dataset-schema.csv", "schema.csv", "schema-field.csv", @@ -402,7 +403,6 @@ def run_endpoint_workflow( endpoints=[resource["endpoints"]], organisations=[organisation], entry_date=resource["start-date"], - custom_temp_dir=os.path.join(data_dir, "var", "cache"), output_log_dir=os.path.join(data_dir, "log/") )