Skip to content

Commit

Permalink
fix: random password for keystores (#2102)
Browse files Browse the repository at this point in the history
  • Loading branch information
devrimyatar committed Aug 11, 2022
1 parent 5ac23a1 commit b7d9af1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def install(self):
Config.isCouchbaseUserAdmin = True

if not Config.get('couchbaseTrustStorePass'):
Config.couchbaseTrustStorePass = 'secret'
Config.couchbaseTrustStorePass = self.getPW()
Config.encoded_couchbaseTrustStorePass = self.obscure(Config.couchbaseTrustStorePass)

if not Config.get('cb_query_node'):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,6 @@ def collect(self):

Config.cache_provider_type = str(oxCacheConfiguration['cacheProviderType'])

Config.scim_rp_client_jks_pass = 'secret' # this is static

# Other clients
client_var_id_list = [
('oxauth_client_id', '1001.'),
Expand Down

0 comments on commit b7d9af1

Please sign in to comment.