sfro

Results 8 comments of sfro

Yeah, we're looking into moving away from pycrypto, but have some license policies that affect which third party packets we may use. Pycryptodome has the OCB license which causes issues,...

Wait, I was confused (I asked this a while ago). As long as pycryptodome isn't pulled in we should be fine. I'll look into using the packet cryptography as a...

@zejn I am trying to use timing to determine what backend is being used, but failing. Do you have an example of how to achieve this?

Pycryptodome isn't installed (not in requirements.txt and doesn't show up in the build script) and we are now using cryptography instead of pycrypto as a backend as recommended :) I...

I'm not able to create objects no matter what public-host I put 🤔 logs show that the request isn't even reaching the server. Using cloud.google.com/go/storage v1.14.0.

Same issue as @weeco , had to use username `git` when using a deploy key

I am also interested in being able to test how an endpoint handles things that are in the context without doing fully fledged integration tests. After adding things to the...

After playing around a bit I worked it out: ``` resp := httptest.NewRecorder() gin.SetMode(gin.TestMode) c, r := gin.CreateTestContext(resp) r.Use(func(c *gin.Context) { c.Set("profile", "myfakeprofile") }) r.GET("/test", func(c *gin.Context) { _, found...