this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

forward requestCrawl as well

+3
+3
cmd/relay/handlers.go
··· 57 57 return c.JSON(http.StatusBadRequest, xrpc.XRPCError{ErrStr: "HostNotFound", Message: fmt.Sprintf("host server unreachable: %s", err)}) 58 58 } 59 59 60 + // forward on to any sibling instances (note that sometimes is, sometimes isn't an admin request) 61 + go s.ForwardAdminRequest(c) 62 + 60 63 return s.relay.SubscribeToHost(ctx, hostname, noSSL, false) 61 64 } 62 65