Skip to content

Commit

Permalink
Fix default value error in ryu adapter, refer to dlinknctu#102
Browse files Browse the repository at this point in the history
  • Loading branch information
hsiaohsuan1l1l committed May 19, 2016
1 parent 7bfcde9 commit 884639f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adapter/ryu/omniui/omniui.py
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ def ryuFlow_v1_3(self, dp, omniFlow):
ryuFlow['match'].update(match)

# handle mutiple actions
acts = omniFlow.get('actions').split(',')
acts = omniFlow.get('actions', '').split(',')
for a in acts:
action = self.to_action_v1_3(dp, a)
if action is not None:
Expand Down

0 comments on commit 884639f

Please sign in to comment.