Skip to content

Commit 275852c

Browse files
committed
Fix attribute reset of wrong entity in db deployment
1 parent b9c0349 commit 275852c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sdg/sd_gds.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def __init__(self, projection_name):
190190
)
191191

192192
reset_self_test_hypotheses_task = UpdateOrCreateTask(
193-
"Flag possible self-test hypotheses",
193+
"reset self-test hypotheses",
194194
"MATCH (h:Hypothesis) RETURN h",
195195
"SET h.self_test = False",
196196
)
@@ -209,8 +209,8 @@ def __init__(self, projection_name):
209209
)
210210

211211
reset_boring_hypotheses_task = UpdateOrCreateTask(
212-
"reset boring hypotheses",
213-
"MATCH (h:Hypothesis) RETURN h",
212+
"reset boring entities",
213+
"MATCH (h:H_Entity) RETURN h",
214214
"SET h.boring = False",
215215
)
216216

0 commit comments

Comments
 (0)