Skip to content
This repository has been archived by the owner on Sep 27, 2021. It is now read-only.

Commit

Permalink
Make sure that ACLs are indexed on every node. (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
wwajerowicz committed Feb 19, 2020
1 parent dae583e commit d505fbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/scala/ch/epfl/bluebrain/nexus/iam/acls/Acls.scala
Expand Up @@ -256,7 +256,7 @@ object Acls {
.flow
.map(_ => ())

F.delay[StreamSupervisor[F, Unit]](StreamSupervisor.startSingleton(F.delay(source.via(flow)), projectionId)) >> F.unit
F.delay[StreamSupervisor[F, Unit]](StreamSupervisor.start(F.delay(source.via(flow)), projectionId)) >> F.unit

}

Expand Down
Expand Up @@ -372,7 +372,7 @@ object Realms {
.flow
.map(_ => ())

F.delay[StreamSupervisor[F, Unit]](StreamSupervisor.startSingleton(F.delay(source.via(flow)), projectionId)) >> F.unit
F.delay[StreamSupervisor[F, Unit]](StreamSupervisor.start(F.delay(source.via(flow)), projectionId)) >> F.unit

}

Expand Down

0 comments on commit d505fbf

Please sign in to comment.