working on lock command
This commit is contained in:
		@@ -9,7 +9,11 @@ import (
 | 
			
		||||
// GetServerInfo queries the supplied connection string for server info and uses the provided repoName to get repo specific information
 | 
			
		||||
func GetServerInfo(connectionString string, repoName string) error {
 | 
			
		||||
	client := resty.New()
 | 
			
		||||
	resp, err := client.R().Get(connectionString + "/info") //creating the full string to get info
 | 
			
		||||
	resp, err := client.R().
 | 
			
		||||
		SetPathParams(map[string]string{
 | 
			
		||||
			"repoName": repoName,
 | 
			
		||||
		}).
 | 
			
		||||
		Get(connectionString + "/info/" + "{repoName}") //creating the full string to get info
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return fmt.Errorf("error connecting to server at: %s: error was: %s", connectionString, err)
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user