Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #16492: We use not the correct InputStream at several place #2701

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

package com.normation.inventory.provisioning.fusion

import java.io.InputStream
import java.security.Security

import com.normation.errors._
Expand All @@ -54,8 +55,6 @@ import org.specs2.mutable._
import org.specs2.runner._
import zio._

import scala.tools.nsc.interpreter.InputStream

@RunWith(classOf[JUnitRunner])
class TestSignatureService extends Specification with Loggable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ import zio.syntax._
import zio.duration._
import com.normation.zio._

import scala.tools.nsc.interpreter.InputStream

final class Watchers(incoming: FileMonitor, updates: FileMonitor) {
def start()(implicit executionContext: ExecutionContext): Either[Throwable, Unit] = {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

package com.normation.rudder.inventory

import java.io.InputStream
import java.security.{PublicKey => JavaSecPubKey}

import com.normation.NamedZioLogger
Expand All @@ -61,8 +62,6 @@ import org.joda.time.format.PeriodFormat
import zio._
import zio.syntax._

import scala.tools.nsc.interpreter.InputStream

object InventoryProcessingLogger extends NamedZioLogger {
override def loggerName: String = "inventory-processing"
}
Expand Down