-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Force config save before load #773
base: master
Are you sure you want to change the base?
Conversation
By analyzing the blame information on this pull request, we identified @tcstewar to be a potential reviewer |
Quick question: how many hours of work was this one-line fix? Just curious 😜 🐙 🌈 |
8 hours. 1 hour to locate the bug. 6 hours to get confused between the division between the client updating code and the server updating code. 1 hour to just talk to Terry for a bit and fix the actual problem. |
I would like to take a look at this before merging. |
This doesn't fix the issue for me. Steps used to test (not necessarily minimal):
import nengo
with nengo.Network() as model:
ens = nengo.Ensemble(10, 1)
Console output:
Concerns apart from not fixing the issue:
Unrelated to this PR ... but why is there a |
Back to the drawing board then.
High disk usage which kills the battery power of laptops and the lifetime of hard drives? |
Though, it's probably buffered anyways ... |
The downside I had in mind when I wrote this originally was the time taken to iterate through the entire graph of objects, read everything, and create the config. But this might be yet another example of premature optimization..... |
Resolves #763