Skip to content

RFC: default hive port

mdm requested to merge hive-port into master

So old logic is convoluted:

  • if port is none then do 21050
  • if port is number (not none) then do number
  • you can't set port=None and have that work (we need it for Efecty cloudera) . Well you can, but after the obj is instantiated (obj.port = None)

new logic:

  • None can be passed explicitly
  • if nothing is set then do 21050 default
  • other numbers work as usual
Edited by mdm

Merge request reports