File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1+ ## Version 0.3.1
2+
3+ fix - add missing recordStartEvent call (#2546 )
4+
15## Version 0.3.0
26
37fix! - remove backfill, due to architectural flaws.
Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515name : storage-resize-images
16- version : 0.3.0
16+ version : 0.3.1
1717specVersion : v1beta
1818
1919displayName : Resize Images
Original file line number Diff line number Diff line change @@ -149,6 +149,7 @@ const generateResizedImageHandler = async (
149149export const generateResizedImage = functions . storage
150150 . object ( )
151151 . onFinalize ( async ( object , context ) => {
152+ await events . recordStartEvent ( object ) ;
152153 await generateResizedImageHandler ( object ) ;
153154 await events . recordCompletionEvent ( { context } ) ;
154155 } ) ;
You can’t perform that action at this time.
0 commit comments