Skip to content

Commit

Permalink
Add for default values in parametes
Browse files Browse the repository at this point in the history
  • Loading branch information
Shokman committed Mar 27, 2015
1 parent 8806aba commit e53d3d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rosbridge_server/scripts/rosbridge_websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ def check_origin(self, origin):
certfile = rospy.get_param('~certfile', None)
keyfile = rospy.get_param('~keyfile', None)
# if authentication should be used
authenticate = rospy.get_param('~authenticate')
user_auth = rospy.get_param('~user_auth')
authenticate = rospy.get_param('~authenticate', False)
user_auth = rospy.get_param('~user_auth', False)
port = rospy.get_param('~port', 9090)
address = rospy.get_param('~address', "")

Expand Down

0 comments on commit e53d3d5

Please sign in to comment.