quantonganh
quantonganh
> What is a "tab" in this case? Which window manager/desktop environment were you using? @ammgws - Mac OS X 10.15 - iTerm2 3.2
@mdomsch I'm an IAM admin. My Group Policies: ``` { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "*", "Resource": "*" } ] } ``` Moreover, if I login to...
@mdomsch Found some clues: don't know why `s3cmd` added `x-amz-security-token` to the `SignHeaders` automatically. On the worked system: ``` DEBUG: SignHeaders: 'GET\n\n\n\nx-amz-date:Fri, 21 Mar 2014 07:07:18 +0000\n/' ``` On the...
@mdomsch: I also have found this via Google: http://www.greenhills.co.uk/2012/12/25/s3cmd-with-iam-roles.html So, I know that it was taken from the metadata: ``` # wget -O - -q 'http://169.254.169.254/latest/meta-data/iam/security-credentials/myrole' { "Code" : "Success",...
> Is s3cmd run on a system with an IAM role defined? Yes, both of the worked and failed system are associated with the same IAM role. > Is the...
@mdomsch: This is better because it allows users to save settings or not. As you can guess, if I choose to save the settings, then open `~/.s3cfg` file, I will...
@appleboy Can you tell me why the test failed? http://drone.wu-boy.com/appleboy/easyssh-proxy/74/3
By adding some debug lines, I found out that: `continueOnError` is false by default, `session.Run` calls `session.Wait`: - https://github.com/quantonganh/easyssh-proxy/blob/master/easyssh.go#L189 ``` func (s *Session) Wait() error { if !s.started { return...
Our `main.go` is something like this: ``` package main import ( "github.com/therecipe/qt/widgets" ) func main() { widgets.NewQApplication(len(os.Args), os.Args) action := widgets.NewQMenuBar(nil).AddMenu2("").AddAction("Check for Updates...") // http://doc.qt.io/qt-5/qaction.html#MenuRole-enum action.SetMenuRole(widgets.QAction__ApplicationSpecificRole) action.ConnectTriggered(func(bool) { sparkle_checkUpdates() })...
> Do you get alerts when there's an error? Yes: >Error: An error occurred in retrieving update information. Please try again later. An error occurred while parsing the update feed....