Eric Franz
Eric Franz
Yes, `kill -9 49811` is off the screen.
Another option that might work: https://github.com/AweSim-OSC/vncsim/blob/760035052f6ca7d2e1ce4e79033370c86fc0fd5f/app/models/session.rb#L267-L271 The point of the `Dir.open(outdir).close` was to force nfs to update the files in the directory. We could use a similar method. Fork and...
In production for a period of time all of the OnDemand and AweSim dashboards became unresponsive to the point of having a Proxy Error because of this. The dashboard was...
Several suggestions have been made. 1. Ensure the scan happens only on the index request 2. Move the code that gets this list of "favorites to a separate route that...
A solution for this is to create a CircuitBreaker https://martinfowler.com/bliki/CircuitBreaker.html but execute the block of ruby in fork. The return value could be passed back from child to parent process...
In the case above this would be the block executed in fork: ```ruby candidate_favorite_paths.select {|p| p.directory? && p.readable? && p.executable? } ``` And of course the return value would be...
Take a look at "Translation management systems" (TMS). There are also tools like https://github.com/pejuko/i18n-translators-tools to convert the default Rails yaml into other formats for easier translation. We could also consider...
This should go near (but not too close to) the button to delete the job. Have it be yellow :-). Note, maybe check and make sure that holding a job...
This is also a problem client side: https://github.com/OSC/ood-shell/blob/2a1af635dbcfb64221a013f4500c0d1d6cd9301e/public/javascripts/ood_shell.1.js#L15 Instead, when the websocket is closed, a warning message should appear above the shell app - not printed to the terminal -...
And for the shell app only we could consider setting [passenger_min_instances](https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_min_instances) to 1: >Please note that this option does not pre-start application processes during Nginx startup. It just makes sure...