Skip to content

Commit

Permalink
try fix cadence
Browse files Browse the repository at this point in the history
  • Loading branch information
longquanzheng committed Dec 7, 2024
1 parent 705a879 commit 8f09ad8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/interpreter/persistence.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand All @@ -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)
}
Expand Down

0 comments on commit 8f09ad8

Please sign in to comment.