commit | 740a09c2d23285e1fdf34de8a5b73cc7bcff4d00 | [log] [tgz] |
---|---|---|
author | William Kurkian <wkurkian3@gmail.com> | Wed Oct 23 17:07:38 2019 -0400 |
committer | Girish Gowdra <girish@opennetworking.org> | Fri Oct 25 04:34:24 2019 +0000 |
tree | 73b1f0ce408eaa0e1b53d50ad5e4616834ada4e7 | |
parent | 5129015302d331f3b3b2b367be90a2a4197c1130 [diff] |
VOL-2146 Put Lock around flow mgr map. Preventing possible concurrent map write with concurrent onu indications. Change-Id: I4a0a25fbf1a7e82d662753e8e2e25f8c88dbb8a1
This project uses Go Modules https://github.com/golang/go/wiki/Modules to manage dependencies. As a local best pratice this project also vendors the dependencies. If you need to update dependencies please follow the Go Modules best practices and also perform the following steps before committing a patch:
go mod tidy
go mod verify
go mod vendor
voltha-protos
or voltha-go
If you want to build/test using a local copy or voltha-protos
or voltha-go
this can be accomplished by using the environment variables LOCAL_PROTOS
and LOCAL_VOLTHA
. These environment variables should be set to the filesystem path where the local source is located, e.g.
LOCAL\_PROTOS=$HOME/src/voltha-protos LOCAL\_VOLTHA=$HOME/src/voltha-go
When these environment variables are set the vendored versions of these packages will be removed from the vendor
directory and replaced by coping the files from the specificed locattions to the vendor
directory. NOTE: this means that the files in the vendor
directory are no longer what is in the git
repository and it will take manual git
intervention to put the original files back.