Skip to content
Snippets Groups Projects
Commit caf30655 authored by Daniel Nemergut's avatar Daniel Nemergut Committed by Charlotte Hausman
Browse files

Uncommented image weblog delivery

parent 70583e2a
No related branches found
No related tags found
2 merge requests!1706merge 2.8.4 to main,!1649Show unit test reports in Gitlab
Pipeline #15680 failed
......@@ -214,9 +214,7 @@ class NgasFile(LocatedFile):
@property
def is_image_ancillary(self) -> bool:
# removing weblog from image ancillaries until processing date determination is sorted
# return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
return self.relative_path.endswith(".fits")
return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
def __str__(self):
return f"NGAS {self.ngas_file_id} from {self.server} -> {self.subdirectory}/{self.relative_path}"
......@@ -286,9 +284,7 @@ class OracleXml(LocatedFile):
@property
def is_image_ancillary(self) -> bool:
# removing weblog from image ancillaries until processing date determination is sorted
# return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
return self.relative_path.endswith(".fits")
return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
def __str__(self):
return f"ALMA {self.archive_uid} @ {self.table} -> {self.subdirectory}/{self.relative_path}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment