scicco
scicco
I found a way: ``` #config/initializers/devise_pwned_passwords_hooks.rb Warden::Manager.after_set_user except: :fetch do |user, auth, opts| if user.class.respond_to?(:pwned_password_check_on_sign_in) && user.class.pwned_password_check_on_sign_in password = auth.request.params.fetch(opts[:scope], {}).fetch(:password, nil) is_pwned = password && auth.authenticated?(opts[:scope]) && user.respond_to?(:password_pwned?) &&...
Hello @jkeen, I'm sorry but I can't. I used this to fix some some data that I cannot publish here for privacy issues...(the GDPR guy is watching me 😨)
Hi, i've fixed this problem by moving all the destroy operations of Problems inside a background job, by introducing Active Jobs with sucker_punch in particular, as already suggested in #1084...
I've added an example repo version with updated custom network files for `rebuild.sh` and `singularity-compose.yml` using this feature https://github.com/scicco/singularity-compose-examples/tree/7a8f23f19889571592f51799922ba0caebf233cd
I've added the latest example changes needed in this [PR](https://github.com/singularityhub/singularity-compose-examples/pull/7)
First of all thank you for the PR 😄 I've checked the [example](https://github.com/singularityhub/singularity-compose-examples/tree/master/v2.0/custom-network) and I have some doubts. I'll try to illustrate them by commenting on your changes.
> We probably need to add support to be able to detect that if singularity doesn’t do it. And you’ve tried with sudo? I've tried with sudo, unfortunately I got...
> okay, perhaps try the workaround suggested by @PauloMigAlmeida then? It does not work either, here is the step done: `$> cat singularity-compose.yml` ```yaml version: "2.0" instances: cg-cache: name: redis...
What I'm trying to achieve with singularity-compose is the same as the following script steps: ```bash #!/bin/bash set -eo pipefail echo "[1/6] stopping existing instance" singularity instance stop redis* ||...
I've created a [test repo](https://github.com/scicco/singularity-compose-test) to simplify debug process. Hope this helps to clarify better my issue