Fix two small typos (#34)

This commit is contained in:
Dilum Aluthge
2021-02-07 06:46:47 -05:00
committed by GitHub
parent b32c73084a
commit f8a636d3f0

View File

@@ -37,9 +37,9 @@ function main(; n = 10, max_delay = 120)
delays = ExponentialBackOff(; n = n, max_delay = max_delay) delays = ExponentialBackOff(; n = n, max_delay = max_delay)
try try
retry(add_general_registry; delays = delays)() retry(add_general_registry; delays = delays)()
@info("Successfully add the General registry") @info("Successfully added the General registry")
catch ex catch ex
msg = "I was unable to added the General registry. However, the build will continue." msg = "I was unable to add the General registry. However, the build will continue."
@error(msg, exception=(ex,catch_backtrace())) @error(msg, exception=(ex,catch_backtrace()))
end end