diff options
Diffstat (limited to 'monitor')
| -rwxr-xr-x | monitor/josef_leveldb.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/monitor/josef_leveldb.py b/monitor/josef_leveldb.py index bf43e75..7d6104c 100755 --- a/monitor/josef_leveldb.py +++ b/monitor/josef_leveldb.py @@ -69,8 +69,11 @@ def db_add_domain(db, domain, data): next_k = item + '.' + k db_append(db, k, next_k) k = next_k - db.Delete(k) + # db.Delete(k) + # print "Got ", db.Get(k) + # print "Put-ing", data db_append(db, k, data) + # print "Got ", db.Get(k) def db_add_certs(db, data): |
