equal
deleted
inserted
replaced
137 while True: |
137 while True: |
138 try: |
138 try: |
139 return in_memory_cnx(config, login, pwd) |
139 return in_memory_cnx(config, login, pwd) |
140 except AuthenticationError: |
140 except AuthenticationError: |
141 print 'wrong user/password' |
141 print 'wrong user/password' |
|
142 # reset cubes else we'll have an assertion error on next retry |
|
143 config._cubes = None |
142 login, pwd = manager_userpasswd() |
144 login, pwd = manager_userpasswd() |
143 |
145 |
144 # repository specific command handlers ######################################## |
146 # repository specific command handlers ######################################## |
145 |
147 |
146 class RepositoryCreateHandler(CommandHandler): |
148 class RepositoryCreateHandler(CommandHandler): |