MongoDB ETIMEOUT

时间:2015-08-04 15:22:22

标签: node.js mongodb mongoose

好的我不知道这里发生了什么我有2个工作项目和一些备份项目。之前正在使用的是现在正在Heroku工作。 今天我尝试做正常的例程并启动节点,现在我收到以下错误。我可能只是因为我最近安装了团队视图,这可能会影响它。但这似乎并非如此,因为我在另一台计算机上尝试了它,我得到了同样的错误。我不知道如何调试这个,有人可以帮助我!!

enter image description here

1 个答案:

答案 0 :(得分:0)

将您的连接字符串更改为

let
    Source = Excel.CurrentWorkbook(){[Name="Tbl_ESP"]}[Content],
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ESP #", type text}, {"Description", type text}, {"KeyWords", type text}}),
    #"Added Custom1" = Table.AddColumn(#"Changed Type", "Combined", each [Description]&" "&[KeyWords]),
    #"Lowercased Text" = Table.TransformColumns(#"Added Custom1",{{"Combined", Text.Lower, type text}}),
    #"Added Custom" = Table.AddColumn(#"Lowercased Text", "Match", each List.Count(Splitter.SplitTextByAnyDelimiter(Search)([Combined]))>1),
    #"Filtered Rows" = Table.SelectRows(#"Added Custom", each ([Match] = true)),
    #"Removed Other Columns" = Table.SelectColumns(#"Filtered Rows",{"Description", "KeyWords", "Hyperlinks"}),
    #"Added Index" = Table.AddIndexColumn(#"Removed Other Columns", "Index", 1, 1),
    #"Renamed Columns" = Table.RenameColumns(#"Added Index",{{"Index", "#"}}),
    #"Reordered Columns" = Table.ReorderColumns(#"Renamed Columns",{"#", "Description", "KeyWords", "Hyperlinks"})
in
    #"Reordered Columns"