* Changed the exporter to work in aws and not standard (was used for debugging)

This commit is contained in:
maor.rayzin 2018-11-27 17:48:40 +02:00
parent af97fb6ffc
commit e8c604d7c5
1 changed files with 1 additions and 1 deletions

View File

@ -754,7 +754,7 @@ class ReportService:
def get_active_exporters():
# This function should be in another module in charge of building a list of active exporters
exporters_list = []
if str(load_env_from_file()) == 'standard':
if str(load_env_from_file()) == AWS:
exporters_list.append(AWSExporter)
return exporters_list