File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
resources/resources/software/aws/toolkits/resources Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ import software.aws.toolkits.core.utils.tryDirOp
3434import software.aws.toolkits.core.utils.tryFileOp
3535import software.aws.toolkits.core.utils.tryOrNull
3636import software.aws.toolkits.core.utils.warn
37+ import software.aws.toolkits.jetbrains.utils.notifyInfo
38+ import software.aws.toolkits.resources.AwsCoreBundle.message
3739import software.aws.toolkits.telemetry.AuthTelemetry
3840import software.aws.toolkits.telemetry.Result
3941import java.io.ByteArrayInputStream
@@ -308,6 +310,10 @@ class DiskCache(
308310 if (e.message?.contains(" No space left on device" ) == true ) {
309311 LOG .warn { " Disk space full. Storing credentials in memory for this session" }
310312 storeInMemory(path, consumer)
313+ notifyInfo(
314+ title = message(" disk.full.notification.title" ),
315+ content = message(" disk.full.notification.body" )
316+ )
311317 }
312318 }
313319 }
Original file line number Diff line number Diff line change @@ -1021,6 +1021,8 @@ developerTool.toolWindow.help.github=Connect with us on GitHub
10211021developerTool.toolWindow.title =Developer Tools
10221022developerTool.toolWindow.welcome.connect =Connect to an account to get started:
10231023developerTool.toolWindow.welcome.creds.about =You can connect to and switch between\n accounts at any time in the toolkit.
1024+ disk.full.notification.title =Disk Full: Credentials Not Saved
1025+ disk.full.notification.body =Your disk is full. Credentials could not be saved and will only last for this session.
10241026docker.not.found =Docker not found
10251027dockerfile.building =Building Dockerfile: {0}
10261028dockerfile.label =Dockerfile:
You can’t perform that action at this time.
0 commit comments