Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Updates cifsdk to 2.0.14, fixes arrow and fix oversight in CSV #362

Merged
merged 1 commit into from
Feb 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion minemeld/ft/cif.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def _build_iterator(self, now):
)
if self.last_successful_run is None:
filters['reporttime'] = '{0}Z'.format(
now.replace(days=-days).format('YYYY-MM-DDTHH:mm:ss')
now.shift(days=-days).format('YYYY-MM-DDTHH:mm:ss')
)
else:
filters['reporttime'] = '{0}Z'.format(
Expand Down
1 change: 1 addition & 0 deletions minemeld/ft/csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import csv
import requests
import yaml
import shutil
from urllib3.response import GzipDecoder

from . import basepoller
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ujson==1.34
filelock==2.0.4
sleekxmpp==1.3.1
beautifulsoup4==4.4.1
cifsdk==2.0.0b7
cifsdk==2.0.14
lz4==0.8.2
networkx==1.11
unicodecsv==0.14.1
Expand Down