diff options
Diffstat (limited to 'weed/wdclient/masterclient.go')
| -rw-r--r-- | weed/wdclient/masterclient.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/weed/wdclient/masterclient.go b/weed/wdclient/masterclient.go index d2d5954e4..e3ffd4834 100644 --- a/weed/wdclient/masterclient.go +++ b/weed/wdclient/masterclient.go @@ -16,7 +16,7 @@ type MasterClient struct { currentMaster string masters []string - VidMap + vidMap } func NewMasterClient(ctx context.Context, clientName string, masters []string) *MasterClient { @@ -24,6 +24,7 @@ func NewMasterClient(ctx context.Context, clientName string, masters []string) * ctx: ctx, name: clientName, masters: masters, + vidMap: newVidMap(), } } |
