You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/acquisition/covidcast/database.py
+6-6
Original file line number
Diff line number
Diff line change
@@ -546,7 +546,7 @@ def get_covidcast_meta(self):
546
546
547
547
meta= []
548
548
549
-
sql='SELECT `source`, `signal` FROM covidcast GROUP BY `source`, `signal` ORDER BY `source` ASC, `signal` ASC;'
549
+
sql='SELECT `source`, `signal` FROM covidcast WHERE NOT `is_wip` GROUP BY `source`, `signal` ORDER BY `source` ASC, `signal` ASC;'
550
550
self._cursor.execute(sql)
551
551
forsource, signalin [ssforssinself._cursor]: #NOTE: this obfuscation protects the integrity of the cursor; using the cursor as a generator will cause contention w/ subsequent queries
0 commit comments