@kapeta/local-cluster-service 0.19.0 → 0.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## [0.19.1](https://github.com/kapetacom/local-cluster-service/compare/v0.19.0...v0.19.1) (2023-09-03)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Removed debug ([feeac46](https://github.com/kapetacom/local-cluster-service/commit/feeac462856a6a375d0f80e1098a25bbcaba0a70))
|
7
|
+
|
1
8
|
# [0.19.0](https://github.com/kapetacom/local-cluster-service/compare/v0.18.0...v0.19.0) (2023-09-03)
|
2
9
|
|
3
10
|
|
@@ -480,7 +480,6 @@ class ContainerManager {
|
|
480
480
|
if (this.logStreams[containerName]?.timer) {
|
481
481
|
clearTimeout(this.logStreams[containerName].timer);
|
482
482
|
}
|
483
|
-
console.log('Stopped listening for logs on container: %s', containerName);
|
484
483
|
try {
|
485
484
|
const stream = this.logStreams[containerName].stream;
|
486
485
|
if (stream) {
|
@@ -480,7 +480,6 @@ class ContainerManager {
|
|
480
480
|
if (this.logStreams[containerName]?.timer) {
|
481
481
|
clearTimeout(this.logStreams[containerName].timer);
|
482
482
|
}
|
483
|
-
console.log('Stopped listening for logs on container: %s', containerName);
|
484
483
|
try {
|
485
484
|
const stream = this.logStreams[containerName].stream;
|
486
485
|
if (stream) {
|
package/package.json
CHANGED
package/src/containerManager.ts
CHANGED
@@ -616,8 +616,6 @@ class ContainerManager {
|
|
616
616
|
if (this.logStreams[containerName]?.timer) {
|
617
617
|
clearTimeout(this.logStreams[containerName].timer);
|
618
618
|
}
|
619
|
-
|
620
|
-
console.log('Stopped listening for logs on container: %s', containerName);
|
621
619
|
try {
|
622
620
|
const stream = this.logStreams[containerName].stream;
|
623
621
|
if (stream) {
|