You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I pulled down code... running ./all.sh I get:
package github.com/ha/doozer
imports code.google.com/p/goprotobuf/proto: unable to detect version control system for code.google.com/ path
I made changes in the files, replace the code.google.com with proper git hub imports in:
modified: .travis.yml
modified: consensus/m.pb.go
modified: consensus/m_test.go
modified: consensus/manager.go
modified: consensus/manager_test.go
modified: consensus/run.go
modified: consensus/run_test.go
modified: doc/hacking.md
modified: doc/proto.md
modified: server/conn.go
modified: server/msg.pb.go
modified: server/server_test.go
modified: server/txn.go
modified: web/web.go
I can't find any more references, but somewhere I the code is still looking for code.google.com, preventing build.
The text was updated successfully, but these errors were encountered:
I found the problem references in the ha/doozer package (which I confused with ha/doozerd at first).
Generally all fixed similar to this issue: google/codesearch#42
Because of the dependency on the client: ha/doozer will need to be updated to make the server: ha/doozerd work.
Still working out issues moving to the websocket package.
Fixed and submitted pull request.
Imported golang.org/x/net/websocket successfully.
I also submitted a pull request on ha/doozer: this package (ha/doozerd) has a dependency on ha/doozer (its client package) which also requires the protobuf imports to be updated to use github.
Until the ha/doozer pull request is accepted, doozerd will not successfully build using travis.
Doozerd runs and tests fine locally, with the dozer change applied.
I pulled down code... running ./all.sh I get:
package github.com/ha/doozer
imports code.google.com/p/goprotobuf/proto: unable to detect version control system for code.google.com/ path
I made changes in the files, replace the code.google.com with proper git hub imports in:
modified: .travis.yml
modified: consensus/m.pb.go
modified: consensus/m_test.go
modified: consensus/manager.go
modified: consensus/manager_test.go
modified: consensus/run.go
modified: consensus/run_test.go
modified: doc/hacking.md
modified: doc/proto.md
modified: server/conn.go
modified: server/msg.pb.go
modified: server/server_test.go
modified: server/txn.go
modified: web/web.go
I can't find any more references, but somewhere I the code is still looking for code.google.com, preventing build.
The text was updated successfully, but these errors were encountered: