Péter Szilágyi

Results 106 issues of Péter Szilágyi

Metadata marshaling currently is done via a map containing untyped interfaces, which is unfortunate given that the code also contains a `meta` type used during unmarshaling. This commit elevates the...

chore

Been playing around with NSQ a lot lately and I keep hitting walls when trying to write test suites for assembling various network topologies. Most of the issues seems to...

bug

If the node already has networking enabled - but has not yet finished building its circuits - EnableNetwork will abort at https://github.com/cretz/bine/blob/master/tor/tor.go#L370 even if `wait` set set to `true`. This...

When starting an onion Listener, the library first requests the onion to be created, and only later does it start listening for events (https://github.com/cretz/bine/blob/master/tor/listen.go#L267). There's a chance that by the...

When the network is enabled, first we give the command to do so https://github.com/cretz/bine/blob/master/tor/tor.go#L373 and only afterwards subscribe to the bootstrap events https://github.com/cretz/bine/blob/master/tor/tor.go#L381. There's a change bootstrap will finish before...

This library currently supports starting Tor offline and then enabling networking at a later point. Sometimes it can be useful to also disable networking. Perhaps you could add an equivalent...

Hey there! I'm playing around with a hobby project in my spare time. For now I'm just building and evaluating the tech stack I'd like to build on top, and...

If I start an embedded tor process, you are currently starting it and immediately checking control port status https://github.com/cretz/bine/blob/master/tor/tor.go#L142: ```go err := tor.startProcess(ctx, conf) // Connect the controller if err...

Without this, ethstats gets stuck if it's started up with a chain shorted than 2K blocks.

I've seen that there have been some changes made over a year ago adding some preheater values, but those have not been release. Any chance of cutting v0.5 from current...