Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
premier commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksjl-adimian committed Oct 4, 2019
1 parent 805449c commit 326beee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kirby/api/ext/topic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import logging
import msgpack
import tenacity
import uuid

from collections import namedtuple
from contextlib import contextmanager
Expand Down Expand Up @@ -338,7 +339,7 @@ def __init__(
else:
self.topic_config = TopicConfig(
name=topic_name,
group_id=ctx.PACKAGE_NAME if not group_id else group_id,
group_id=str(uuid.uuid4()) if not group_id else group_id,
use_tls=use_tls,
raw_records=raw_records,
)
Expand Down
1 change: 1 addition & 0 deletions kirby/supervisor/executor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@


def convert_variables(data):

return {variable["key"]: variable["value"] for variable in data}


Expand Down

0 comments on commit 326beee

Please sign in to comment.