make tagging more general
This commit is contained in:
parent
7e68606cc1
commit
55a0f7c254
@ -3,6 +3,7 @@ import logging
|
||||
from services.base import Base
|
||||
|
||||
class AbilityEstimationService(Base):
|
||||
ACTION = 'abilityEstimation'
|
||||
|
||||
def process(self):
|
||||
logging.info('Ability Estimation Service to be implemented...')
|
||||
|
@ -14,6 +14,7 @@ from models.target import Target
|
||||
from services.base import Base
|
||||
|
||||
class FormGenerationService(Base):
|
||||
ACTION = 'formGeneration'
|
||||
|
||||
def process(self):
|
||||
try:
|
||||
@ -254,4 +255,4 @@ class FormGenerationService(Base):
|
||||
# upload generated file to s3 and return result
|
||||
return aws_helper.file_stream_upload(
|
||||
solution_file, self.file_name,
|
||||
ApplicationConfigs.s3_processed_bucket, 'formGeneration')
|
||||
ApplicationConfigs.s3_processed_bucket, self.ACTION)
|
||||
|
Loading…
x
Reference in New Issue
Block a user