We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8aa050e + f8587c8 commit e771959Copy full SHA for e771959
1 file changed
sandbox_store.go
@@ -128,6 +128,12 @@ func (sb *sandbox) storeUpdate() error {
128
retry:
129
sbs.Eps = nil
130
for _, ep := range sb.getConnectedEndpoints() {
131
+ // If the endpoint is not persisted then do not add it to
132
+ // the sandbox checkpoint
133
+ if ep.Skip() {
134
+ continue
135
+ }
136
+
137
eps := epState{
138
Nid: ep.getNetwork().ID(),
139
Eid: ep.ID(),
0 commit comments