Upcoming maintenance: Thursday 21 August @ 12:00-14:00 CEST.

Skip to content
Snippets Groups Projects
Commit 763165dc authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Pre-merge code cleanup

parent 8ca81ad2
No related branches found
No related tags found
2 merge requests!359Release TeraFlowSDN 5.0,!296Resolve "(CTTC) Add OpenFlow support through Ryu SDN controller"
...@@ -210,4 +210,4 @@ export KFK_NAMESPACE="kafka" ...@@ -210,4 +210,4 @@ export KFK_NAMESPACE="kafka"
export KFK_SERVER_PORT="9092" export KFK_SERVER_PORT="9092"
# Set the flag to YES for redeploying of Apache Kafka # Set the flag to YES for redeploying of Apache Kafka
export KFK_REDEPLOY="" export KFK_REDEPLOY=""
\ No newline at end of file
...@@ -78,8 +78,8 @@ class ServiceHandlerFactory: ...@@ -78,8 +78,8 @@ class ServiceHandlerFactory:
raise UnsatisfiedFilterException(filter_fields) raise UnsatisfiedFilterException(filter_fields)
field_enum_values = FILTER_FIELD_ALLOWED_VALUES.get(field_name) field_enum_values = FILTER_FIELD_ALLOWED_VALUES.get(field_name)
field_candidate_service_handler_classes = set()
field_candidate_service_handler_classes = set()
for field_value in field_values: for field_value in field_values:
if field_enum_values is not None and field_value not in field_enum_values: if field_enum_values is not None and field_value not in field_enum_values:
raise UnsupportedFilterFieldValueException(field_name, field_value, field_enum_values) raise UnsupportedFilterFieldValueException(field_name, field_value, field_enum_values)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment