Skip to content

Commit ca5a7e7

Browse files
committed
Remove assert on unknown keys in ancillary text processing
1 parent 24c7fcb commit ca5a7e7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/goesproc/handler_goesr.cc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,13 @@ GOESRProduct::GOESRProduct(const std::shared_ptr<const lrit::File>& f)
135135
continue;
136136
}
137137

138-
FAILM("Unhandled key in ancillary text \"", key, "\"");
138+
// New keys were added to this map which tripped this assert.
139+
// Started happening on Apr 2, 2020. If these contain useful
140+
// information, we can choose to properly process them at a
141+
// later point in time. Until then, ignore them.
142+
//
143+
// FAILM("Unhandled key in ancillary text \"", key, "\"");
144+
//
139145
}
140146

141147
// The product name is encoded in the file name only.

0 commit comments

Comments
 (0)