Skip to content

Commit

Permalink
updated the conductor file
Browse files Browse the repository at this point in the history
  • Loading branch information
sukruthiarjula committed Jun 13, 2024
1 parent a8183c8 commit 722e58a
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions server/src/main/java/com/netflix/conductor/Conductor.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.diffplug.gradle.spotless;
package com.netflix.conductor;

import java.io.IOException;
import java.util.Properties;

import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand All @@ -30,13 +31,11 @@
// In case that SQL database is selected this class will be imported back in the appropriate
// database persistence module.
@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
@ComponentScan(
basePackages = {
"com.netflix.conductor",
"io.orkes.conductor",
"org.ccctech.apigateway.conductor"
}
)
@ComponentScan(basePackages = {
"com.netflix.conductor",
"io.orkes.conductor",
"org.ccctech.apigateway.conductor"
})
public class Conductor {

private static final Logger log = LoggerFactory.getLogger(Conductor.class);
Expand Down

0 comments on commit 722e58a

Please sign in to comment.