Skip to content

Commit 49909e1

Browse files
committed
v0.0.10 release
1 parent a666fbc commit 49909e1

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ pydantic==1.5.1
1010
loguru==0.4.1
1111
clickhouse_driver==0.1.3
1212
mysqlclient==1.4.6
13-
confluent-kafka==1.4.1
13+
confluent-kafka==1.3.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"databases",
2929
"clickhouse_driver",
3030
"mysqlclient",
31-
"confluent-kafka"
31+
"confluent-kafka==1.3.0"
3232
]
3333

3434
kwargs = {

unimeta/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.6'
1+
__version__ = '0.0.10'

unimeta/event.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,8 @@ def insert_ch(self,ch):
9090
try:
9191
ch.execute(sql,[self.data])
9292
except:
93-
debug(self.data)
93+
logger.error(self.data)
9494
logger.exception("what?")
95-
raise
9695

9796
def json(self) -> str:
9897
return json.dumps({

0 commit comments

Comments
 (0)