You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implemented in e697c3d (see this diff) like follows:
Added new model GeneralJob based on ActiveJob (under app/jobs)
save it on the database via provisioning = Provisioning.new(...).save (otherwise it will be lost, once the job is finished)
instead of delivering the provisioning via provisioning.deliver (as I do it with provision/de-provision/read), I run it via job = GeneralJob.perform_later(self, "synchronizeSynchronously") in app/models/provisioningobject.rb: synchronize method.
All background jobs including the synchronization jobs should be visible in a tasks list. Today, only provision methods :create and :delete are seen.
The text was updated successfully, but these errors were encountered: