Git Product home page Git Product logo

godon's Introduction

godon's People

Contributors

bmf-san avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

godon's Issues

Source code - runtime error

Hi,
I follow the instructions as per given in the website and also clone these github repo. when I try to run the main file after the build, it shows error as like run time error.
I hereby attached the error as below.
kindly let me know to resolve this issue !

go_reverseproxy_issue

Warning: Range var backend copies lock

Hi @bmf-san
I am getting some warnings in the code which point to line 93 @ server.go:

    for _, backend := range cfg.Backends {

The warning spew points to the Backend struct:

type Backend struct {
	URL    string `json:"url"`
	IsDead bool
	mu     sync.RWMutex
}

Fix: The sync.RWMutex variable should be embedded into a pointer.

	mu     *sync.RWMutex

Since we are assigning a temp var as backend, which holds the object of the used in the loop. The issue arises here, since we are holding a value of the mutex, and not the actual reference to the Mutex. Granted, we don't use the Mutex anywhere in the range in the healthcheck function, so we don't run into problems.

Feel free to correct me, if I am wrong ๐Ÿ™‚

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.