moose-lib 0.6.23__py3-none-any.whl → 0.6.25__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- moose_lib/streaming/streaming_function_runner.py +7 -2
- {moose_lib-0.6.23.dist-info → moose_lib-0.6.25.dist-info}/METADATA +1 -1
- {moose_lib-0.6.23.dist-info → moose_lib-0.6.25.dist-info}/RECORD +5 -5
- {moose_lib-0.6.23.dist-info → moose_lib-0.6.25.dist-info}/WHEEL +0 -0
- {moose_lib-0.6.23.dist-info → moose_lib-0.6.25.dist-info}/top_level.txt +0 -0
|
@@ -209,9 +209,14 @@ parser.add_argument('--security_protocol', type=str, help='The security protocol
|
|
|
209
209
|
parser.add_argument('--dmv2', action=argparse.BooleanOptionalAction, type=bool,
|
|
210
210
|
help='Whether to use the DMV2 format for the streaming function')
|
|
211
211
|
|
|
212
|
-
args = parser.parse_args()
|
|
212
|
+
args: argparse.Namespace = parser.parse_args()
|
|
213
|
+
|
|
214
|
+
for arg in vars(args):
|
|
215
|
+
value = getattr(args, arg)
|
|
216
|
+
if 'password' in arg and value is not None:
|
|
217
|
+
value = '******'
|
|
218
|
+
print(arg, value)
|
|
213
219
|
|
|
214
|
-
print(args)
|
|
215
220
|
source_topic = KafkaTopicConfig(**json.loads(args.source_topic_json))
|
|
216
221
|
target_topic = KafkaTopicConfig(**json.loads(args.target_topic_json)) if args.target_topic_json else None
|
|
217
222
|
function_file_dir = args.function_file_dir
|
|
@@ -26,12 +26,12 @@ moose_lib/dmv2/types.py,sha256=5FsB0HLHFkYB-8cjJ0rtRUjqahVA-ToLr2JXT1lFiss,3276
|
|
|
26
26
|
moose_lib/dmv2/view.py,sha256=fVbfbJgc2lvhjpGvpfKcFUqZqxKuLD4X59jdupxIe94,1350
|
|
27
27
|
moose_lib/dmv2/workflow.py,sha256=_FY4-VRo7uWxRtoipxGSo04qzBb4pbP30iQei1W0Ios,6287
|
|
28
28
|
moose_lib/streaming/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
moose_lib/streaming/streaming_function_runner.py,sha256=
|
|
29
|
+
moose_lib/streaming/streaming_function_runner.py,sha256=qVWm29f2oSPd5pT2-0WwUbM4Esnci8f6ZJ613OqsPQo,23579
|
|
30
30
|
tests/__init__.py,sha256=0Gh4yzPkkC3TzBGKhenpMIxJcRhyrrCfxLSfpTZnPMQ,53
|
|
31
31
|
tests/conftest.py,sha256=ZVJNbnr4DwbcqkTmePW6U01zAzE6QD0kNAEZjPG1f4s,169
|
|
32
32
|
tests/test_moose.py,sha256=mBsx_OYWmL8ppDzL_7Bd7xR6qf_i3-pCIO3wm2iQNaA,2136
|
|
33
33
|
tests/test_redis_client.py,sha256=d9_MLYsJ4ecVil_jPB2gW3Q5aWnavxmmjZg2uYI3LVo,3256
|
|
34
|
-
moose_lib-0.6.
|
|
35
|
-
moose_lib-0.6.
|
|
36
|
-
moose_lib-0.6.
|
|
37
|
-
moose_lib-0.6.
|
|
34
|
+
moose_lib-0.6.25.dist-info/METADATA,sha256=Hq_MwwVkWIuvtATrnipVeGmricUmokjIhJa5Oh1NShY,730
|
|
35
|
+
moose_lib-0.6.25.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
36
|
+
moose_lib-0.6.25.dist-info/top_level.txt,sha256=XEns2-4aCmGp2XjJAeEH9TAUcGONLnSLy6ycT9FSJh8,16
|
|
37
|
+
moose_lib-0.6.25.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|