Skip to content
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

add port as variable and fix paths #6

Closed
wants to merge 2 commits into from
Closed

Conversation

csilva-cl
Copy link

  • s3daemon port can be changed but defaults to 15555
  • some path fixes
  • add support text when doing repeats of transfers

@csilva-cl csilva-cl requested review from ktlim and womullan December 20, 2023 12:37
@@ -8,27 +8,26 @@ source venv/bin/activate



total=2
repeat=2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i switched away from this to total files - the number of files is not the same on each machine so if you use repeat the stats. So this change will mess up the plots when you run for large numbers.
It is better to state 200 files not reapet x files 10 times where you do not know what x is ..

Copy link
Contributor

@womullan womullan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok except the repeat ..

@@ -36,7 +36,7 @@
),
)

PORT = 15555
PORT = int(os.environ["S3DAEMON_PORT"])
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you want the port to truly default to 15555 even if nothing is specified, this can be:

PORT = int(os.environ.get("S3DAEMON_PORT", 15555))

@ktlim
Copy link
Contributor

ktlim commented Dec 21, 2023

I'm fine with the port env var.

@womullan
Copy link
Contributor

womullan commented Sep 6, 2024

@csilva-cl I think you can close this now - Josh has the ports and as I explained the other is not good

@womullan
Copy link
Contributor

womullan commented Sep 6, 2024

@csilva-cl perhaps close - obsoloete now ?

@csilva-cl
Copy link
Author

obsolete

@csilva-cl csilva-cl closed this Sep 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants