Skip to content
Merged
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
3 changes: 0 additions & 3 deletions etc/LSSTCam/primary_hdu.header
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,6 @@ PROGRAM = / Name of the program
REASON = / Reason for observation
OBSANNOT= / Observing annotation

---- Test Stand information ----
TSTAND = / The Test Stand used

---- Information from Camera (Common block) ----
IMAGETAG= / DAQ Image id

Expand Down
2 changes: 1 addition & 1 deletion python/HeaderService/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.

__author__ = "LSST/Felipe Menanteau"
__version__ = "3.5.4"
__version__ = "3.5.5"
version = __version__

from . import hutils
Expand Down
2 changes: 1 addition & 1 deletion python/HeaderService/hslib_salobj.py
Original file line number Diff line number Diff line change
Expand Up @@ -903,8 +903,8 @@ def update_header(self, imageName):
# Otherwise we put it into the PRIMARY
else:
extname = 'PRIMARY'
self.HDR[imageName].update_record(keyword, value, extname)
self.log.info(f"Updating header[{extname}] with {keyword:8s} = {value}")
self.HDR[imageName].update_record(keyword, value, extname)

def get_imageName(self, myData):
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# The main call
setup(name='HeaderService',
version='3.5.4',
version='3.5.5',
license="GPL",
description="LSST Meta-data aggregator for FITS header service",
author="LSST, Felipe Menanteau",
Expand Down