Skip to content

Commit

Permalink
remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelTorrecillas committed Apr 26, 2023
1 parent 2f866c0 commit 707f501
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion saas/models/saas_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ def build_execute_kw(self, build, model, method, args=None, kwargs=None):
return self._build_execute_kw(build.name, model, method, args, kwargs)

def build_post_init(self, build, post_init_action=None, key_value_dict=None):
_logger.debug('######################### build post init')
if post_init_action is None:
post_init_action = ""

Expand Down
3 changes: 0 additions & 3 deletions saas/models/saas_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ def create_db(self, key_values=None, db_name=None, with_delay=True, draft_build_

self.env['saas.log'].log_db_creating(build, self.operator_db_id)
if with_delay:
_logger.debug('######################### With delay')
job_create = build.delayable().create_db(
self.operator_db_name, self.template_id.template_demo,
)
Expand All @@ -240,7 +239,6 @@ def create_db(self, key_values=None, db_name=None, with_delay=True, draft_build_
build.action_install_missing_mandatory_modules()

self.operator_id.build_post_init(build, self.template_id.build_post_init, key_values)
_logger.debug('######################### end create db')

return build

Expand All @@ -252,5 +250,4 @@ def random_ready_operator(self):

def action_install_missing_mandatory_modules(self):
for record in self:
_logger.debug('######################### missing mandatory module')
record.operator_db_id.action_install_missing_mandatory_modules()

0 comments on commit 707f501

Please sign in to comment.