Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jacobsa-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
jacobsa-fuse
Commits
430fbb30
Commit
430fbb30
authored
May 25, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated mounted_file_system.go.
parent
43892975
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
mounted_file_system.go
mounted_file_system.go
+15
-3
No files found.
mounted_file_system.go
View file @
430fbb30
...
...
@@ -16,6 +16,7 @@ package fuse
import
(
"fmt"
"io/ioutil"
"log"
"runtime"
...
...
@@ -154,7 +155,7 @@ func Mount(
dir
string
,
server
Server
,
config
*
MountConfig
)
(
mfs
*
MountedFileSystem
,
err
error
)
{
logger
:=
get
Logger
()
debugLogger
:=
getDebug
Logger
()
// Initialize the struct.
mfs
=
&
MountedFileSystem
{
...
...
@@ -163,7 +164,7 @@ func Mount(
}
// Open a bazilfuse connection.
l
ogger
.
Println
(
"Opening a bazilfuse connection."
)
debugL
ogger
.
Println
(
"Opening a bazilfuse connection."
)
bfConn
,
err
:=
bazilfuse
.
Mount
(
mfs
.
dir
,
config
.
bazilfuseOptions
()
...
)
if
err
!=
nil
{
err
=
fmt
.
Errorf
(
"bazilfuse.Mount: %v"
,
err
)
...
...
@@ -176,8 +177,19 @@ func Mount(
opContext
=
context
.
Background
()
}
// Create a /dev/null error logger if necessary.
errorLogger
:=
config
.
ErrorLogger
if
errorLogger
==
nil
{
errorLogger
=
log
.
New
(
ioutil
.
Discard
,
""
,
0
)
}
// Create our own Connection object wrapping it.
connection
,
err
:=
newConnection
(
opContext
,
logger
,
bfConn
)
connection
,
err
:=
newConnection
(
opContext
,
debugLogger
,
errorLogger
,
bfConn
)
if
err
!=
nil
{
bfConn
.
Close
()
err
=
fmt
.
Errorf
(
"newConnection: %v"
,
err
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment