Skip to content

Commit 942cb3b

Browse files
authored
Update wrong location of CancellableRunnable (#129405)
Accidentally put this in the wrong location, should be in core since it's shared between the microsoft graph realm and ldap realm.
1 parent e010413 commit 942cb3b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* 2.0.
66
*/
77

8-
package org.elasticsearch.xpack.security.support;
8+
package org.elasticsearch.xpack.core.security.support;
99

1010
import org.apache.logging.log4j.Logger;
1111
import org.elasticsearch.ElasticsearchTimeoutException;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* 2.0; you may not use this file except in compliance with the Elastic License
55
* 2.0.
66
*/
7-
package org.elasticsearch.xpack.security.support;
7+
package org.elasticsearch.xpack.core.security.support;
88

99
import org.elasticsearch.ElasticsearchTimeoutException;
1010
import org.elasticsearch.action.ActionListener;

x-pack/plugin/security/src/main/java/org/elasticsearch/xpack/security/authc/ldap/LdapRealm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import org.elasticsearch.xpack.core.security.authc.support.UserRoleMapper;
3030
import org.elasticsearch.xpack.core.security.authc.support.UserRoleMapper.UserData;
3131
import org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken;
32+
import org.elasticsearch.xpack.core.security.support.CancellableRunnable;
3233
import org.elasticsearch.xpack.core.security.user.User;
3334
import org.elasticsearch.xpack.core.ssl.SSLService;
3435
import org.elasticsearch.xpack.security.authc.ldap.support.LdapLoadBalancing;
@@ -38,7 +39,6 @@
3839
import org.elasticsearch.xpack.security.authc.support.DelegatedAuthorizationSupport;
3940
import org.elasticsearch.xpack.security.authc.support.DnRoleMapper;
4041
import org.elasticsearch.xpack.security.authc.support.mapper.CompositeRoleMapper;
41-
import org.elasticsearch.xpack.security.support.CancellableRunnable;
4242
import org.elasticsearch.xpack.security.support.ReloadableSecurityComponent;
4343

4444
import java.util.HashMap;

0 commit comments

Comments
 (0)