Skip to content

Commit

Permalink
template store . #2881
Browse files Browse the repository at this point in the history
  • Loading branch information
Al-assad committed Aug 1, 2023
1 parent 56f4d4e commit 71b086d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ object FileServerPeerAddress {
infer
.map(Some(_))
.tap(address.set)
.tap(addr => ZIO.logInfo(s"Embedded HTTP file server K8s peer address: $addr"))
.tap(addr => ZIO.logInfo(s"Embedded HTTP file server K8s peer address: ${addr.getOrElse("unknown")}"))
.forkDaemon
.runUIO

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import zio.ZIO
* Example of using an embedded file server.
* Tips: Please uncomment the @Ignore tag to execute the example code.
*/
@Ignore
@Ignore
class UsingEmbeddedFileServer extends AnyWordSpecLike with BeforeAndAfterAll {

"Launch embedded http file server and mirror files" in unsafeRun {
Expand Down

0 comments on commit 71b086d

Please sign in to comment.