Skip to content

Commit

Permalink
Fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Oct 11, 2024
1 parent 86eb44c commit 4bb23de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ object EpicsService {
connectionTimeout.map(x =>
props.setProperty(EPICS_CA_CONN_TMO.toString, x.toSeconds.toString)
)
enableRepeater.map(x => props.setProperty(CA_REPEATER_DISABLE.toString, !x.toString))
enableRepeater.map(x => props.setProperty(CA_REPEATER_DISABLE.toString, (!x).toString))
repeaterPort.map(x => props.setProperty(EPICS_CA_REPEATER_PORT.toString, x.toString))
serverPort.map(x => props.setProperty(EPICS_CA_SERVER_PORT.toString, x.toString))
maxArrayBytes.map(x => props.setProperty(EPICS_CA_MAX_ARRAY_BYTES.toString, x.toString))
Expand Down

0 comments on commit 4bb23de

Please sign in to comment.