peterchenadded

Results 10 comments of peterchenadded

@pdmosses did you get a chance to look at issue reported by @Michael2MacDonald I had the same issue and had to update below code to be startswith instead of contains....

@pdmosses also any ideas to improve the build times of combination-rec-nav branch? For roughly 300 pages it was taking 600 seconds to build for us. Due to below code: https://github.com/pdmosses/just-the-docs/blob/combination-rec-nav/_includes/nav/links.html#L56...

> @pdmosses > Right, that condition can hold when paths of different lengths have a title in common. Annoying that Liquid doesn't have startswith. Perhaps prefixing both paths by some...

Thanks for the detailed response @mason-splunk The use cases are below 1. People want to use different secrets on different servers - better security 2. The secret is exposed and...

Other code needs to be updated, otherwise all pass4symmkey and sslPasswords won't be able to decrypt and your server probably won't start.

Need to run the show shcluster-status command and if captain already elected do not run the init captain command again.

Yeah I also ran into timing issues with that. I ended up checking if server.conf shclustering has the id option using btools to work out if the bootstrap captain command...

Sure, pretty sure the issue exists in the latest version when I looked at the code. Will do an actual check and get back.

Looking for same steps. I guess it would involve first hosting the nodejs oauth app.

Below worked for me ``` from datamodel_code_generator import reference def new_snake_to_upper_camel(word: str, delimiter: str = '_') -> str: return word reference.snake_to_upper_camel = new_snake_to_upper_camel ``` It stops the conversion, probably not...