hunyadi-dev commented on a change in pull request #979:
URL: https://github.com/apache/nifi-minifi-cpp/pull/979#discussion_r584733262
##########
File path: docker/test/integration/minifi/processors/PutAzureBlobStorage.py
##########
@@ -0,0 +1,13 @@
+from ..core.Processor import Processor
+
+
+class PutAzureBlobStorage(Processor):
+ def __init__(self):
+ super(PutAzureBlobStorage, self).__init__('PutAzureBlobStorage',
+ properties={
+ 'Container Name':
'test_container',
+ 'Connection String':
'DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azure-storage-server:10000/devstoreaccount1;QueueEndpoint=http://azure-storage-server:10001/devstoreaccount1;',
+ 'Blob': 'test_blob',
+ 'Create Container':
'true',
+ },
+ auto_terminate=['success'])
Review comment:
Does this processor not have a failure relationship as well?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]