Skip to content

Commit

Permalink
fix(ci): run locally
Browse files Browse the repository at this point in the history
  • Loading branch information
bas-kirill committed Aug 24, 2024
1 parent 77fdf26 commit f41480a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions server/app/src/main/kotlin/mu/muse/application/Application.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ import java.time.Instant
@Import(ApplicationConfiguration::class)
class Application : CommandLineRunner {

@Autowired
lateinit var namedTemplate: NamedParameterJdbcTemplate

@Autowired
lateinit var userIdGenerator: IdGenerator<UserId>

Expand All @@ -47,6 +44,8 @@ class Application : CommandLineRunner {
@Autowired
lateinit var instrumentPersister: InstrumentPersister

@Suppress("LongMethod")
// todo(tech-debt): use 2 different CLI runners and add dev profile
override fun run(vararg args: String?) {
val user = User.create(
id = userIdGenerator.generate(),
Expand Down

0 comments on commit f41480a

Please sign in to comment.