Compare commits

...

1 Commits

Author SHA1 Message Date
Loïc Mathieu
ce3837b995 feat(system): replace our SecurityManager by a Java agent
Part-of: https://github.com/kestra-io/kestra-ee/pull/6153
2025-12-23 12:15:46 +01:00

View File

@@ -9,12 +9,4 @@ public class WorkerSecurityService {
public State.Type callInSecurityContext(AbstractWorkerCallable callable) {
return callable.call();
}
public boolean isInSecurityContext() {
throw new UnsupportedOperationException();
}
public AbstractWorkerCallable getCallable() {
throw new UnsupportedOperationException();
}
}