Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 0 additions & 2 deletions tools/endpoint_checker/functions_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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(),
Expand Down
2 changes: 1 addition & 1 deletion tools/endpoint_checker/functions_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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/")
)

Expand Down