aboutsummaryrefslogtreecommitdiffstats
path: root/components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py
diff options
context:
space:
mode:
Diffstat (limited to 'components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py')
-rw-r--r--components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py b/components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py
index 8f68bfec0..6ec5d82ab 100644
--- a/components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py
+++ b/components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py
@@ -1,12 +1,18 @@
from abstract_ra_processor import AbstractRAProcessor
+from blueprint_constants import *
class SampleRAProcessorFunction(AbstractRAProcessor):
+ def __init__(self):
+ AbstractRAProcessor.__init__(self)
+
def process(self, execution_request):
- print "Processing calling.."
+ AbstractRAProcessor.process(self, execution_request)
+ print "Processing calling.." + PROPERTY_BLUEPRINT_BASE_PATH
return None
def recover(self, runtime_exception, execution_request):
- print "Recovering calling.."
+ AbstractRAProcessor.recover(self, runtime_exception, execution_request)
+ print "Recovering calling.." + PROPERTY_BLUEPRINT_BASE_PATH
return None