From 8f09ad8c1f7c87d5acb2a1db438f4d950384b151 Mon Sep 17 00:00:00 2001 From: Quanzheng Long Date: Fri, 6 Dec 2024 16:18:27 -0800 Subject: [PATCH] try fix cadence --- service/interpreter/persistence.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service/interpreter/persistence.go b/service/interpreter/persistence.go index 0f228ecd..d182597c 100644 --- a/service/interpreter/persistence.go +++ b/service/interpreter/persistence.go @@ -160,7 +160,7 @@ func (am *PersistenceManager) LoadDataObjects( func (am *PersistenceManager) GetAllSearchAttributes() []iwfidl.SearchAttribute { var res []iwfidl.SearchAttribute if am.provider.GetBackendType() == service.BackendTypeCadence { - // TODO not sure why cadence doesn't work for this + // TODO not sure why cadence doesn't work for this in CI(local is fine) for _, value := range am.searchAttributes { res = append(res, value) } @@ -179,7 +179,7 @@ func (am *PersistenceManager) GetAllSearchAttributes() []iwfidl.SearchAttribute func (am *PersistenceManager) GetAllDataObjects() []iwfidl.KeyValue { var res []iwfidl.KeyValue if am.provider.GetBackendType() == service.BackendTypeCadence { - // TODO not sure why cadence doesn't work for this + // TODO not sure why cadence doesn't work for this in CI(local is fine) for _, value := range am.dataObjects { res = append(res, value) }