Add a reaped bit to funcSvc struct

This commit is contained in:
Soam Vasani
2016-11-04 23:05:29 -07:00
parent d805928f3e
commit 35a5c94731
+3 -1
View File
@@ -35,10 +35,12 @@ import (
) )
type funcSvc struct { type funcSvc struct {
function *fission.Metadata // function this thing is for function *fission.Metadata // function this pod/service is for
environment *fission.Environment // env it was obtained from environment *fission.Environment // env it was obtained from
serviceName string // name of k8s svc serviceName string // name of k8s svc
reaped bool // if true, the pod has been deleted
ctime time.Time ctime time.Time
atime time.Time atime time.Time
} }