-
Notifications
You must be signed in to change notification settings - Fork 58
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
ERR panic: runtime error: invalid memory address or nil pointer dereference^ #204
Comments
It seems is there Not sure why this happen, @aeijdenberg any idea ? |
You are referencing a development branch. Was that a mistake?
We pulled from master branch.
David Filippelli | Platform Engineer, Platform Reliability
Enterprise Technology & Services
250 Bloor Street East | Toronto, Ontario, M4W 1E5 | M. 416-527-3343
David_Filippelli@manulife.com<mailto:David_Filippelli@manulife.com> | manulife.com<http://www.manulife.com/>
Have a question? Want to know how we deliver?
Check out our Playbook<https://mfc.sharepoint.com/sites/GEO/playbook> and be a part of the community!
[cid:image001.png@01D37BEB.A96D7410]
From: Etourneau Gwenn <notifications@github.com>
Reply-To: cloudfoundry-community/firehose-to-syslog <reply@reply.github.com>
Date: Wednesday, September 26, 2018 at 9:06 PM
To: cloudfoundry-community/firehose-to-syslog <firehose-to-syslog@noreply.github.com>
Cc: David Filippelli <David_Filippelli@manulife.com>, Author <author@noreply.github.com>
Subject: Re: [cloudfoundry-community/firehose-to-syslog] ERR panic: runtime error: invalid memory address or nil pointer dereference^ (#204)
It seems is there https://github.com/cloudfoundry-community/firehose-to-syslog/blob/develop/caching/caching_lazyfill.go#L145 and according to the stacktrace nv is 0x0 (nil)
Not sure why this happen, @aeijdenberg<https://github.com/aeijdenberg> any idea ?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#204 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AWJsOlDZ1suvzD16HUcANcQKdgCJZTk-ks5ufCR5gaJpZM4W7Lpu>.
STATEMENT OF CONFIDENTIALITY The information contained in this email message and any attachments may be confidential and legally privileged and is intended for the use of the addressee(s) only. If you are not an intended recipient, please: (1) notify me immediately by replying to this message; (2) do not use, disseminate, distribute or reproduce any part of the message or any attachment; and (3) destroy all copies of this message and any attachments.
|
same no ? |
This is what we added in red below.
import (
"encoding/json"
"fmt"
"math/rand"
"strings"
"time"
"errors"
func (c *CacheLazyFill) normaliseAndSaveEntityToDatabase(entityType, uuid string, nv *entity) error {
// Strip name suffixes if applicable. This is intended for blue green deployments,
// so that things like -venerable can be stripped from renamed apps
if entityType == "apps" {
for _, suffix := range c.config.StripAppSuffixes {
if nv == nil {
return errors.New("invalid nv entity")
}
if strings.HasSuffix(nv.Name, suffix) {
nv.Name = nv.Name[:len(nv.Name)-len(suffix)]
break
}
}
}
David Filippelli | Platform Engineer, Platform Reliability
Enterprise Technology & Services
250 Bloor Street East | Toronto, Ontario, M4W 1E5 | M. 416-527-3343
David_Filippelli@manulife.com<mailto:David_Filippelli@manulife.com> | manulife.com<http://www.manulife.com/>
Have a question? Want to know how we deliver?
Check out our Playbook<https://mfc.sharepoint.com/sites/GEO/playbook> and be a part of the community!
[cid:image001.png@01D37BEB.A96D7410]
From: Etourneau Gwenn <notifications@github.com>
Reply-To: cloudfoundry-community/firehose-to-syslog <reply@reply.github.com>
Date: Wednesday, September 26, 2018 at 9:30 PM
To: cloudfoundry-community/firehose-to-syslog <firehose-to-syslog@noreply.github.com>
Cc: David Filippelli <David_Filippelli@manulife.com>, Author <author@noreply.github.com>
Subject: Re: [cloudfoundry-community/firehose-to-syslog] ERR panic: runtime error: invalid memory address or nil pointer dereference^ (#204)
same no ? https://github.com/cloudfoundry-community/firehose-to-syslog/blob/master/caching/caching_lazyfill.go#L145
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#204 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AWJsOlKB8vgYEelAo7iCLGvSp0SXW6IQks5ufCoogaJpZM4W7Lpu>.
STATEMENT OF CONFIDENTIALITY The information contained in this email message and any attachments may be confidential and legally privileged and is intended for the use of the addressee(s) only. If you are not an intended recipient, please: (1) notify me immediately by replying to this message; (2) do not use, disseminate, distribute or reproduce any part of the message or any attachment; and (3) destroy all copies of this message and any attachments.
|
I will propose a fix soon. But the problem is I don't know how you get this issue. So I can reproduce in my env. Thanks. |
We are running PCF 2.1
The following was done
# Setup repo
go get github.com/cloudfoundry-community/firehose-to-syslog
cd $GOPATH/src/github.com/cloudfoundry-community/firehose-to-syslog
Modified
```
func ValueMetric(msg *events.Envelope) *Event {
valMetric := msg.GetValueMetric()
fields := logrus.Fields{
"unit": valMetric.GetUnit(),
valMetric.GetName(): valMetric.GetValue(),
}
return &Event{
Fields: fields,
Msg: "",
}
}
```
# Build binary
go build
Pushed the app with the new firehose-to-syslog binary. Wait a bit and you get that memory error.
As a side note are there any thoughts of adding filtering with the ORG: org1, org2 option? For example ABC-123, ABC-231 would be ABC* instead of writing both orgs in the filter list.
David Filippelli | Platform Engineer, Platform Reliability
Enterprise Technology & Services
250 Bloor Street East | Toronto, Ontario, M4W 1E5 | M. 416-527-3343
David_Filippelli@manulife.com<mailto:David_Filippelli@manulife.com> | manulife.com<http://www.manulife.com/>
Have a question? Want to know how we deliver?
Check out our Playbook<https://mfc.sharepoint.com/sites/GEO/playbook> and be a part of the community!
[cid:image001.png@01D37BEB.A96D7410]
From: Etourneau Gwenn <notifications@github.com>
Reply-To: cloudfoundry-community/firehose-to-syslog <reply@reply.github.com>
Date: Wednesday, September 26, 2018 at 9:51 PM
To: cloudfoundry-community/firehose-to-syslog <firehose-to-syslog@noreply.github.com>
Cc: David Filippelli <David_Filippelli@manulife.com>, Author <author@noreply.github.com>
Subject: Re: [cloudfoundry-community/firehose-to-syslog] ERR panic: runtime error: invalid memory address or nil pointer dereference^ (#204)
I will propose a fix soon. But the problem is I don't know how you get this issue.
So I can reproduce in my env.
Thanks.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#204 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AWJsOjNC2Z-vzKjH0NdwJpww_P7Bl8m7ks5ufC8KgaJpZM4W7Lpu>.
STATEMENT OF CONFIDENTIALITY The information contained in this email message and any attachments may be confidential and legally privileged and is intended for the use of the addressee(s) only. If you are not an intended recipient, please: (1) notify me immediately by replying to this message; (2) do not use, disseminate, distribute or reproduce any part of the message or any attachment; and (3) destroy all copies of this message and any attachments.
|
Can you checkout the branch |
@shinji62 - that might fix the symptom, but I don't think helps with the cause. e.g. I can't understand why https://github.com/cloudfoundry-community/firehose-to-syslog/blob/develop/caching/caching_lazyfill.go#L180 would ever see a ie why would the API ever return a GUID for an app, but no entity record? I'd to see the full response that came back from the server.... |
@aeijdenberg I don't know neither ... I can't reproduce.. |
It's not a fix though - it just masks what could be a lurking and legitimate problem on either the server, or our understanding of how the API call is meant to work. Maybe could try something like this first: #205 |
yeah quick and dirty :) booohhh |
Hi, I'm a colleague of @filidav who's been advising on this issue. I recommend a couple of things for this: Do the nil check in both places. For I'd also recommend updating the // Populate bolt with all apps
for guid, app := range allApps {
// escape early to avoid unnecessary allocations
if app == nil {
continue
}
// Canonicalise the guid
u, err := uuid.FromString(guid)
if err != nil {
return err
}
uuid := u.String()
// ...
}
|
It is counter-productive to check for Why is that a bad idea? Because it's masking a different problem - these should never be I think it's reasonable to check and raise an error that can help diagnose the issue, but to check and continue as though there's no issue is worse than crashing. I would be interested to see what log messages result if you merge #205. That should print the URL which you could |
If I do test this will ever be merged into master? |
I think if you test it, then you'd be helping us figure out what the actual bug is and where it might lie. |
Sounds good |
I agree that "hiding" this issue with a |
Deployed the firehose nozzle app with this branch 2018-09-28T08:03:13.561-04:00 [APP/PROC/WEB/1] [OUT] [2018-09-28 12:03:13.561663524 +0000 UTC m=+0.050649701] Using wss://doppler.sys.use.sandbox.pcf.manulife.com:443 as doppler endpoint |
What else do you require? |
changed manifest to debug : true Not much more detail 2018-09-28T12:06:33.72-0400 [APP/PROC/WEB/0] OUT {"ENV":"pcf_sandbox","cf_origin":"firehose","deployment":"p-mysql-8f4fb8de90f6a3757e58","event_type":"ValueMetric","ip":"","job":"monitoring","job_index":"c92ca7a8-a416-445d-9af2-a51f72ea816b","level":"info","msg":"","origin":"bosh-system-metrics-forwarder","time":"2018-09-28T16:06:33Z","unit":"Percent","valMetric.GetName":0} |
I thought with this branch you put in a fix that would avoid this issue. Seem like the issue is still present. |
I need to merge #205 and then test again. |
I merged pull #205 018-10-01T11:46:34.204-04:00 [APP/PROC/WEB/1] [ERR] panic: runtime error: invalid memory address or nil pointer dereference |
Does it help ^^ ?? |
Not really you don't have some logs before this one ? |
Started the app back up to get you the logs before. Do you want me to put the app in debug mode?
Here is the manifest for you reference.
applications:
- name: elk-cloudfoundry-nozzle
health-check-type: process
no-route: true
instances: 2
buildpack: binary_buildpack
path: ../target/fs
command: ./firehose-to-syslog
env:
GOPACKAGENAME: git.platform.manulife.io/platformreliability/firehose-to-syslog
API_ENDPOINT: https://api.sys.use.sandbox.pcf.manulife.com
DEBUG: false
DOPPLER_ENDPOINT: wss://doppler.sys.use.sandbox.pcf.manulife.com:443
EVENTS: LogMessage,ValueMetric,Error,ContainerMetric
FIREHOSE_CLIENT_ID: <removed>
FIREHOSE_CLIENT_SECRET: <removed>
FIREHOSE_SUBSCRIPTION_ID: firehose-b
LOG_EVENT_TOTALS: true
LOG_EVENT_TOTALS_TIME: 10s
SKIP_SSL_VALIDATION: true
SKIP_SSL_VALIDATION_SYSLOG: false
SYSLOG_ENDPOINT: <syslog endpoint removed>:517
SYSLOG_PROTOCOL: tcp+tls # tcp/udp/tcp+tls
EXTRA_FIELDS: "ENV:pcf_sandbox"
LOGS_BUFFER_SIZE: 100000
CF_PULL_TIME: 2s
CERT_PEM: certs/<cert.pem removed>
ORGS: SANDBOX
David Filippelli | Platform Engineer, Platform Reliability
Enterprise Technology & Services
250 Bloor Street East | Toronto, Ontario, M4W 1E5 | M. 416-527-3343
David_Filippelli@manulife.com<mailto:David_Filippelli@manulife.com> | manulife.com<http://www.manulife.com/>
Have a question? Want to know how we deliver?
Check out our Playbook<https://mfc.sharepoint.com/sites/GEO/playbook> and be a part of the community!
[cid:image001.png@01D37BEB.A96D7410]
From: Etourneau Gwenn <notifications@github.com>
Reply-To: cloudfoundry-community/firehose-to-syslog <reply@reply.github.com>
Date: Monday, October 1, 2018 at 7:50 PM
To: cloudfoundry-community/firehose-to-syslog <firehose-to-syslog@noreply.github.com>
Cc: David Filippelli <David_Filippelli@manulife.com>, Mention <mention@noreply.github.com>
Subject: Re: [cloudfoundry-community/firehose-to-syslog] ERR panic: runtime error: invalid memory address or nil pointer dereference^ (#204)
Not really you don't have some logs before this one ?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#204 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AWJsOtp7VmNpz6i47WnKjmrStxxXmwKPks5ugqongaJpZM4W7Lpu>.
STATEMENT OF CONFIDENTIALITY The information contained in this email message and any attachments may be confidential and legally privileged and is intended for the use of the addressee(s) only. If you are not an intended recipient, please: (1) notify me immediately by replying to this message; (2) do not use, disseminate, distribute or reproduce any part of the message or any attachment; and (3) destroy all copies of this message and any attachments.
|
Nothing additional you can use. Just the connection before and the destroy/recreate of the container 2018-10-01T20:43:27.221-04:00 [API/1] [OUT] Starting app with guid 4cc5493a-8559-4d28-a489-cf6d972d348f |
I thought I would be able to see a URL that I could curl that is emitting the nil pointer. |
failed again 2018-10-01T21:56:40.248-04:00 [CELL/1] [OUT] Cell 8e12ecd0-fb5c-4cde-acda-a3df0326c641 creating container for instance 885b4b0c-2fcd-40f0-533f-bba0 |
Can you try with debug mode enabled ? |
With debug "job":"cloud_controller","job_index":"16bad1d6-4d25-40b8-8116-32809fb17d70","level":"info","msg":"","origin":"cc","requests.outstanding":3,"time":"2018-10-02T03:26:40Z","unit":"counter"} |
Any other suggestions? |
@filidav - sorry for the delayed response, have been at an offsite without laptop earlier this week. Looking at the new stack trace, it seems to be hitting a slightly different code path. I've added a second commit to PR #205 to catch this and log an appropriate message. Would be possible to rebuild with this patch and then look for log messages containing |
Added your changes 2018-10-03T20:26:06.820-04:00 [APP/PROC/WEB/1] [OUT] [2018-10-04 00:26:06.819826368 +0000 UTC m=+4.128743401] Connected to Syslog Server! Connecting to Firehose... |
@filidav - I think it's unlikely the change would have introduced that particular error. Are there any instances of (if I'm reading the above correctly, is it mixing messages from 2 different processes, |
No other errors |
Any other suggestions on how we can trap for this condition |
Why would the API ever return a GUID for an app, but no entity record which would cause this panic error? |
Why would the API ever return a GUID for an app, but no entity record which would cause this panic error? ==> We don't know, that the all problem here. Ever since we installed this fix I don't see the nil pointer. Are we now ignoring it? ==> We don't ignore it, we trap the error and ignore the record not the error. |
So how will we ever get to root cause?
David Filippelli | Platform Engineer, Platform Reliability
Enterprise Technology & Services
250 Bloor Street East | Toronto, Ontario, M4W 1E5 | M. 416-527-3343
David_Filippelli@manulife.com<mailto:David_Filippelli@manulife.com> | manulife.com<http://www.manulife.com/>
Have a question? Want to know how we deliver?
Check out our Playbook<https://mfc.sharepoint.com/sites/GEO/playbook> and be a part of the community!
[cid:image001.png@01D37BEB.A96D7410]
From: Etourneau Gwenn <notifications@github.com>
Reply-To: cloudfoundry-community/firehose-to-syslog <reply@reply.github.com>
Date: Tuesday, October 9, 2018 at 9:50 PM
To: cloudfoundry-community/firehose-to-syslog <firehose-to-syslog@noreply.github.com>
Cc: David Filippelli <David_Filippelli@manulife.com>, Mention <mention@noreply.github.com>
Subject: Re: [cloudfoundry-community/firehose-to-syslog] ERR panic: runtime error: invalid memory address or nil pointer dereference^ (#204)
Why would the API ever return a GUID for an app, but no entity record which would cause this panic error? ==> We don't know, that the all problem here.
Ever since we installed this fix I don't see the nil pointer. Are we now ignoring it? ==> We don't ignore it, we trap the error and ignore the record not the error.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#204 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AWJsOomev1pPgGjG4rSs7fj-n8r3nSLHks5ujVJKgaJpZM4W7Lpu>.
STATEMENT OF CONFIDENTIALITY The information contained in this email message and any attachments may be confidential and legally privileged and is intended for the use of the addressee(s) only. If you are not an intended recipient, please: (1) notify me immediately by replying to this message; (2) do not use, disseminate, distribute or reproduce any part of the message or any attachment; and (3) destroy all copies of this message and any attachments.
|
btw, @aeijdenberg add more change to #205 did you include all of them ? |
Yes all those changes are in. |
The changes in #205 should stop the panics, but I would have expected that something would be catching and logging the error that is now returned. I'm surprised there isn't, but then again, I was surprised that the underlying API would ever have returned that type of data to begin with, so perhaps it was a transient error and has resolved itself? Either way, I think #205 should be safe to merge. |
Just a side note, it is still technically possible to hit the nil pointer issue when calling |
@elliottpolk - you're correct that if you pass |
Has this been resolved? I've been seeing this issue (or something very similar) in my PCF environments. Firehose has been crashing on a regular basis. Occasionally, when PCF restarts firehose it fails to start processing the logs again. We've had to set a schedule to automatically restart firehose every couple hours. |
2018-09-26T11:07:47.66-0400 [APP/PROC/WEB/1] OUT {"ENV":"pcf_sandbox","cf_origin":"firehose","deployment":"service-instance_908b922d-8768-4769-b9fd-8e8a383cef11","event_type":"ValueMetric","ip":"","job":"mongod_node","job_index":"fe539b85-6546-4098-ac9f-cd98e4eafcb1","level":"info","msg":"","origin":"bosh-system-metrics-forwarder","system.swap.percent":1,"time":"2018-09-26T15:07:47Z","unit":"Percent"}
2018-09-26T11:07:47.66-0400 [APP/PROC/WEB/1] OUT {"ENV":"pcf_sandbox","cf_origin":"firehose","deployment":"cf","event_type":"ValueMetric","ip":"10.234.250.72","job":"router","job_index":"dcea8fb8-5b51-4510-9873-fd1551c8d912","level":"info","msg":"","origin":"gorouter","route_lookup_time":4900,"time":"2018-09-26T15:07:47Z","unit":"ns"}
2018-09-26T11:07:47.66-0400 [APP/PROC/WEB/1] OUT {"ENV":"pcf_sandbox","cf_origin":"firehose","deployment":"cf","event_type":"ValueMetric","ip":"10.234.250.72","job":"router","job_index":"dcea8fb8-5b51-4510-9873-fd1551c8d912","latency":8,"level":"info","msg":"","origin":"gorouter","time":"2018-09-26T15:07:47Z","unit":"ms"}
2018-09-26T11:07:47.66-0400 [APP/PROC/WEB/1] OUT {"ENV":"pcf_sandbox","LeasesRenewRequestTime":47.699400000000004,"cf_origin":"firehose","deployment":"cf","event_type":"ValueMetric","ip":"10.234.250.34","job":"diego_database","job_index":"6babf9d0-2623-40ae-943a-50fee1eca036","level":"info","msg":"","origin":"silk-controller","time":"2018-09-26T15:07:47Z","unit":"ms"}
2018-09-26T11:07:47.75-0400 [APP/PROC/WEB/1] OUT {"ENV":"pcf_sandbox","LeasesIndexRequestTime":10.113199999999999,"cf_origin":"firehose","deployment":"cf","event_type":"ValueMetric","ip":"10.234.250.34","job":"diego_database","job_index":"6babf9d0-2623-40ae-943a-50fee1eca036","level":"info","msg":"","origin":"silk-controller","time":"2018-09-26T15:07:47Z","unit":"ms"}
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR panic: runtime error: invalid memory address or nil pointer dereference^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x764298]^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR goroutine 27 [running]:^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR git/firehose-to-syslog/caching.(*CacheLazyFill).normaliseAndSaveEntityToDatabase(0xc420194480, 0x9b0aa1, 0x4, 0xc4201fc5d0, 0x24, 0x0, 0x0, 0x0)^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR ........../caching/caching_lazyfill.go:145 +0x88^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR git/firehose-to-syslog/caching.(*CacheLazyFill).getEntity(0xc420194480, 0x9b0aa1, 0x4, 0xc4201fc390, 0x24, 0xc420231cf0, 0xc420231cf0, 0x4bd94e)^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR .........caching/caching_lazyfill.go:121 +0x2bc^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR git/caching.(*CacheLazyFill).GetApp(0xc420194480, 0xc4201fc390, 0x24, 0x1, 0x1, 0xc4201fc390)^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR .........caching/caching_lazyfill.go:242 +0x8a^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR git/events.(*Event).AnnotateWithAppData(0xc420414510, 0xa1dca0, 0xc420194480)^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR .........events/events.go:129 +0x12f^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR git./eventRouting.(*EventRoutingDefault).RouteEvent(0xc42009b680, 0xc4203242d0)^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR .........eventRouting/eventrouting_default.go:68 +0x14d^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR git/firehoseclient.(*FirehoseNozzle).ReadLogsBuffer(0xc4203e28c0, 0xa21960, 0xc4203e44c0)^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR .........firehoseclient/firehoseclient.go:119 +0x1b3^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR created by git/firehoseclient.(*FirehoseNozzle).Start^[[0m
^[[31m2018-09-26T11:07:47.77-0400 [APP/PROC/WEB/1] ERR .........firehoseclient/firehoseclient.go:77 +0xb4^[[0m
2018-09-26T11:07:47.80-0400 [APP/PROC/WEB/1] OUT Exit status 2
2018-09-26T11:07:47.80-0400 [CELL/SSHD/1] OUT Exit status 0
2018-09-26T11:07:47.84-0400 [CELL/1] OUT Cell db1be119-8594-481d-92bc-59eb0dc30522 stopping instance 790d8b14-45b7-49aa-6d29-257f
2018-09-26T11:07:47.84-0400 [CELL/1] OUT Cell db1be119-8594-481d-92bc-59eb0dc30522 destroying container for instance 790d8b14-45b7-49aa-6d29-257f
2018-09-26T11:07:48.20-0400 [CELL/1] OUT Cell db1be119-8594-481d-92bc-59eb0dc30522 successfully destroyed container for instance 790d8b14-45b7-49aa-6d29-257f
##################\
We think it is this.
import errors
The text was updated successfully, but these errors were encountered: