Coder Social home page Coder Social logo

knit-go's People

Contributors

chrispine avatar dependabot[bot] avatar emcfarlane avatar jhump avatar mfridman avatar nicksnyder avatar srikrsna-buf avatar zchee avatar

Stargazers

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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

zchee alavrovinfb

knit-go's Issues

Resolver mixing up entities

For some reason after several requests the resolver starts to mix the entities

here is an example where the continentId of the entity does not resolve to the correct continent.id

Response

{
	"1": {
		"code": "ala",
		"continent": {
			"code": "asi",
			"id": "zlH0vmjqZuM1D6QqIHvkY",
			"label": "Asia",
			"system": true
		},
 		"continentId": "iFjjl_yrDUFJhQdM4jT5_",
		"id": "x-rlOCWpz93LwoaPuB5rq",
		"label": "Aland Islands"
	}
}

Proto

message ContinentRelationResponse {
  repeated Result values = 1;
  message Result {
    Continent continent = 1;
  }
}

message CountryRelationRequest {
  repeated Country bases = 1;
}

service CountryRelationsResolver {
  rpc ResolveCountryContinent(CountryRelationRequest) returns (ContinentRelationResponse) {
    option (buf.knit.v1alpha1.relation).name = "continent";
    option idempotency_level = NO_SIDE_EFFECTS;
  }
}

Any guidance on what could the problem be?

Don't use CORS default config, it is blocked by Chrome

When using the default AllowAll config of rs/cors pkg, it returns wildcard "*" for allowed origins, however, in recent versions of Chrome this is blocked when using credentials, which will return an error like:

Access to fetch at 'http://localhost:8080/ensignia.v1alpha1.EnsigniaService/ListClusters' from origin 'http://localhost:3000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include'.
co

Suggested fix:

Specify a config with AllowOriginFunc: func(string) bool { return true } or pass this through to a backend service to answer the OPTIONS request.

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.