From ba4c48f335b6da6e105dadc7a0a193cc172b5c61 Mon Sep 17 00:00:00 2001 From: Tim Bannister Date: Wed, 28 Nov 2018 05:59:38 +0000 Subject: [PATCH] Fix hyperlinks to public URI for GitHub issues Seems like the Firecracker repo is now public at https://github.com/firecracker-microvm Signed-off-by: Tim Bannister --- FAQ.md | 2 +- mmds/src/data_store.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FAQ.md b/FAQ.md index 6be101906a1..ff3b85fa869 100644 --- a/FAQ.md +++ b/FAQ.md @@ -99,7 +99,7 @@ Not at the moment. ### I tried using an initrd for boot but it doesn't seem to be used. Is initrd supported? Right now, initrd is not supported in Firecracker. You can track issue -[#228](https://github.com/aws/PRIVATE-firecracker/issues/208) for news on this +[#228](https://github.com/firecracker-microvm/firecracker/issues/208) for news on this topic. ### Firecracker is not showing any output on the console. diff --git a/mmds/src/data_store.rs b/mmds/src/data_store.rs index 993fd166a8f..2cae98e1df5 100644 --- a/mmds/src/data_store.rs +++ b/mmds/src/data_store.rs @@ -37,7 +37,7 @@ impl Mmds { pub fn put_data(&mut self, data: Value) { // TODO: we should add a data validator and only accept Strings, arrays & dictionaries - // https://github.com/aws/PRIVATE-firecracker/issues/401 + // https://github.com/firecracker-microvm/firecracker/issues/401 self.data_store = data; self.is_initialized = true; }