Hi Winston,
You should not change the code in hive.go. You can either:
1) use "-laddr" command line parameter to "
127.0.0.1:8888" or something like that,
2) or set the Addr in a HiveConfig and pass it through the NewHiveWithConfig method. Something like this:
cfg := bh.DefaultCfg
hive := bh.NewHiveWithConfig(cfg)
-- Soheil