Browse Source

Corrected ip field in query on db

master
Maxime Wack 6 years ago
parent
commit
f0466ad240
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      feed_db.R

+ 2
- 2
feed_db.R View File

@@ -22,9 +22,9 @@ known_ips <- character(0)


db %>% db %>%
tbl("geoip") %>% tbl("geoip") %>%
select(query) %>%
select(ip) %>%
collect %>% collect %>%
pull(query) -> known_ips
pull(ip) -> known_ips


db %>% db %>%
tbl("access") %>% tbl("access") %>%


Loading…
Cancel
Save