Mike Nestor

Results 17 comments of Mike Nestor

I don't even have a delete section on mine and it nuked everything. Ugh!

Probably not the best python code Change [fileconveyor/arbitrator.py:778] if rule["deletionDelay"] > 0: To if rule["deletionDelay"] is None: self.logger.warning("Not going to delete '%s'" % (input_file)) elif rule["deletionDelay"] > 0:

Fixed in https://github.com/mnestor/fileconveyor

The simple fix: Put: .treeTable td:nth-of-type(1) { padding-left: 21px; padding-right: 10px; } in: editor/static/editor/jquery.treeTable.css

Do you have a login app installed like sociallogin? I have sociallogin installed for auth against keycloak and it appears that the test/cookie url path is causing a login redirect...

I could see this more as a regex type thing ``` from: tcp=https://sub([0-9]{3}).testsystems.internal:22 to: tcp://10.0.0.$1:22 ``` ``` from: https://([^\.]*).testsystems.internal to: http://$1.testsystems.internal ``` Then you could manage 2 routes with restrictions...

I failed to test it completely and found an issue with it. I'm still working it out. I'll resubmit once I get that fixed. Sorry about that. ## Mike Nestor...

Everyone wants their pull requests different. I'm not great with git but I'll try to split that. I'd just gotten used to rebase/squash before a pull request. Having the branch...

That works too. I should have it all finished up Monday to submit the pull again. Just glad someone had done most of the legwork for a solution that would...