For older Excel versions =IF(A2<>A1,A2,A2*1.5) dragged down could do the trick, but there is a drawback - formula links to 2 cells above, so it can't start in A2.
Result:
I also noticed that since december, the combination between getItems & OData query operations suddenly stopped working.
I declared an issue here and hope for an update / guidance regarding this REST API method.
If nothing works, remove the line which mentions import 'package:flutter_gen/gen_l10n/app_localizations.dart'; and manually type it. I've faced this issue multiple times and this resolves it. Beware this only works when the installations and files are in place.
If you still want to pull tags from origin, but don't want to be annoyed by messages that some tags are rejected, you can activate pruning for tags:
git config fetch.pruneTags true
same issue, have you resolved it? Thanks.
oh! I need a too! please help me!
In the end, I found this article, which states:
Starting with Android Q, simple swipe gestures that start within the systemGestureInsets areas are used by the system for page navigation and may not be delivered to the app.
https://api.flutter.dev/flutter/widgets/MediaQueryData/systemGestureInsets.html
Use JavaScript to set width dynamically:
document.addEventListener("DOMContentLoaded", () => {
const slider = document.querySelector(".slider");
const slides = document.querySelectorAll(".slide");
slider.style.width = `${slides.length * 100}%`; // Adjust width dynamically
});
It seems that the issue might be related to a JSON file. Could you please provide a screenshot of the error and the relevant logs? This will help us assist you more effectively.
@MTO, It is unclear to me what the actual question is. But here are some ideas based on assumptions:
Assuming you want to find the nearest neighbor line of a given line. Then adapt and try the following:
SELECT lt1.name as line_1, lt2.name as line_2 FROM line_table lt1, line_table lt2 WHERE SDO_NN(lt1.geometry,lt2.geometry, 'sdo_num_res=1') = 'TRUE' AND lt1.id <> lt2.id;
Assuming you want to find lines that have a topological relationship to each other. Then adapt and try the following:
SELECT /*+ ordered use_nl (a,b) use_nl (a,c) */ b.id, c.id FROM TABLE(sdo_join('LINE_TABLE','GEOMETRY','LINE_TABLE','GEOMETRY')) a, line_table b, line_table c WHERE a.rowid1 = b.rowid AND a.rowid2 = c.rowid AND b.rowid < c.rowid AND SDO_GEOM.RELATE (b.geometry, 'ANYINTERACT', c.geometry, .05) = 'TRUE'
I had this issue; open SSL cant cope with long names in quotes, so you need to use the 8.3 format if there is a space;
set OPENSSL_CONF="C:\Program Files\OpenSSL-Win64\bin" <diddnt work set OPENSSL_CONF=C:\PROGRA~1\OpenSSL-Win64\bin <works
Using react-navigation tabs, you can do something like:
<Tab.Screen
// ...TabProps
listeners={({ navigation }) => ({
tabPress: (e) => {
e.preventDefault();
navigation.navigate("TabName", {
screen: "ScreenName",
});
},
})}
/>
Are you register your router to dispatcher?
Try something like this dp.include_router(questionnaire_router)
If you're having trouble launching Neo4j Desktop on your Windows machine, here are some troubleshooting steps to help resolve the issue:
Try to use microsoft document intelligence studio , make sure you have to give output_content_format="markdown"
If you have your organization admin access , you can search it from Gcp console and choose the already created domain for your organization . If you don't have access to your organization you can contact for fast resolution Google workspace support team or you can create a free PUBLIC issue tracker and choose component as Public Trackers > Cloud Support > Google Workspace and Vote the bug with +1 icon . Google engineersthe will look into that issue .
Did you find a solution? because i'm having the same problem.
Use Chirp::with('user')->paginate(10) directly in the Blade template without storing it in state.
Modify your Volt component to this:
<?php
use App\Models\Chirp; use Livewire\WithPagination;
$chirps = Chirp::with('user')->latest()->paginate(10); ?>
Modify the Blade View
<div>
<div class="mt-6 bg-white shadow-sm rounded-lg divide-y">
@foreach ($chirps as $chirp)
<div class="p-6 flex space-x-2" wire:key="{{ $chirp->id }}">
...
</div>
@endforeach
</div>
{{ $chirps->links() }}
I've found the issue causing this.
// This is the `err` I wish to log
if err := validate.Validate.Struct(payload); err != nil {
// err becomes nil here
errResponse, err := utils.GenerateErrorMessages(err)
if err != nil {
utils.WriteJSON(w, http.StatusInternalServerError, err)
return
}
errorMessage := response.ErrorResponse{
Message: "Invalid request body",
Errors: errResponse,
}
// nil err is passed to response writer and not logged.
response.BadRequestErrorResponse(w, r, err, errorMessage)
return
}
I just need to change the use different variable names for the error.
If you're on an IPv4 network, you can use the option meant for connecting to IPv4 networks under "Connect". I was able to get around this error after I switched to the Session Spooler connection settings
Here’s a clear explanation of what I changed for anyone who might run into this problem.
Dockerfile:
# removed the "--env-file=.env"
CMD ["node", "build/index.js"]
Docker run is now:
docker run -p 3000:3000 -e PUBLIC_BACKEND_URL=http://localhost:5062 frontend
Code Changes:
import { env } from '$env/dynamic/public';
const backendUrl = env.PUBLIC_BACKEND_URL;
add .env to dockerignore and rename the env right from VITE_BACKEND_URL => PUBLIC_BACKEND_URL
Thanks a lot @brunnerh for your answer
I think you have to install Node 20.6+ or dotenv.
At the right bottom of the VS code windows you'll find the type of code that it is using. Tap on it and select Plain Text.
In the case of your README it would be better to use the markdown. Rename it README.md and use the MarkDown type of language in your editor
I think you should set JDK location for JDK which matches your system's version.
Maybe this question will help you: How to set Java SDK path in AndroidStudio?
Found the answer accidentally today. If you press "y" while scrolling in copy mode, it will jump to end of line (no need of Ctrl+A for this command).
You can use case kSecAttrAccessibleAfterFirstUnlock = .always
var $date = moment();
console.log($date.isValid());
var $isValid = $employmentDate.isValid();
Use the .isValid() function
As far as I know, the only sure way to do this is to install a more user friendly version of Android such as LineageOS or Graphene OS.
I have been intending to try and find out if it's possible to manually delete files associated with an app that can't otherwise be removed but information on doing this is hard to find. I expect the method would either be by way of adb or a rooted file utility but you have to have a way to figure out exactly what files to delete and where to find them.
It also would be nice to have more information about what this Device Care actually does.
My Devices: Samsung Galaxy S9 - LineageOS 20 (Android 13) Samsung Galaxy Tab A8 - Android 14 HP EliteBook 850 G4 - Android x86
This helped.
transformIgnorePatterns: [
"/node_modules/(?!ky).+\\.js$"
],
I learn that the instance on neo4jaura was paused. Turning it on, solved the problem.
You can add following properties to your application.yml file
resilience4j:
timelimiter:
instances:
iamServiceCircuitBreaker:
timeoutDuration: 10s
cancelRunningFuture: true
carefloServiceCircuitBreaker:
timeoutDuration: 10s
cancelRunningFuture: true
You do not need to remove APid in CSV file, the process will check it for you. All have to do select skip dropdown list in TableMapp section. It'worked for me!
a {
cursor: not-allowed;
}
<a>Not Allowed</a>
For us, the solution was to move the the project to the C drive (it used to be on an external SSD).
To debug the form data, print it after form submission.
echo "<pre>";
print_r($_POST);
echo "</pre>";
Your approach using SAN policy 3 is a solid start to prevent automatic mounting and writing. However, for bypassing the critical disk restriction, you might need to use a lower-level filter driver or modify WinPE’s boot configuration to prevent Windows from treating the disk as critical. Have you explored using StorPort mini-filters or modifying registry settings in the PE environment before mounting? Also, setting the disk as read-only in the startnet.cmd script should prevent accidental writes, but testing with ProcMon could confirm if anything slips through. Let us know if you find a foolproof method.
Set display: flex
.paragraph-text {
display: flex;
align-items: center;
justify-content: center;
}
I had this same problem, and I sorted it out by upgrading my torch version from 1.x.x to 2.x.x
I'm using zerolog in a Go application and trying to log errors. However, when I call .Err() on the logger, the error field doesn’t show up in the console output. Everything else logs correctly except the error itself.
Here’s how I set up the logger:
var (
once sync.Once
log zerolog.Logger
)
func Get() zerolog.Logger {
once.Do(func() {
zerolog.ErrorStackMarshaler = pkgerrors.MarshalStack
zerolog.TimeFieldFormat = time.RFC3339Nano
var output io.Writer = zerolog.ConsoleWriter{
Out: os.Stdout,
TimeFormat: time.RFC3339,
FieldsExclude: []string{
"user_agent",
"git_revision",
"go_version",
},
}
var gitRevision string
buildInfo, ok := debug.ReadBuildInfo()
if ok {
for _, v := range buildInfo.Settings {
if v.Key == "vcs.revision" {
gitRevision = v.Value
break
}
}
}
logLevel := int(zerolog.InfoLevel)
log = zerolog.New(output).
Level(zerolog.Level(logLevel)).
With().
Stack().
Caller().
Timestamp().
Str("git_revision", gitRevision).
Str("go_version", buildInfo.GoVersion).
Logger()
zerolog.DefaultContextLogger = &log
})
return log
}
Then, in a route handler, I use the logger like this:
l = logger.Get()
reqIDRaw := middleware.GetReqID(r.Context())
l.Warn().
Str("requestID", reqIDRaw).
Str("method", r.Method).
Str("url", r.URL.Path).
Err(errors.Wrap(err, "bad request")).
Msg("bad request")
2025-02-24T10:02:35+03:00 WRN internal/services/response/error_response.go:43 > bad request method=POST requestID=Kengos-MacBook-Pro.local/0hS9QB33oG-000001 url=/v1/auth/register
The error field is completely missing from the output, even though I passed it with .Err().
I’ve tried adding FormatFieldName to the ConsoleWriter, but it still doesn’t show:
FormatFieldName: func(field string) string {
if field == "error" {
return field
}
return field
},
I also tried using FormatFieldValue, but no luck.
I’d like the log output to include the error, like this:
error=bad request: some detailed error message
What am I missing? How do I make zerolog actually show the error field in console output?
You haven’t initialised the class (IIR2Filter), so filter(self, v) is not being passed self; x[i] is therefore the first positional argument (self) and the second positional argument (v) is missing.
I have run below commands in command prompt and resolved the issue. 1.adb uninstall io.appium.uiautomator2.server 2.adb uninstall io.appium.uiautomator2.server.test
Did you find your answer ?????
If you want to keep tinySquare size (20px), you can make your firstColumn flex-wrap so it will not shrink element inside it.
As i said, I want to use $lookup as a Set so that I can later check against other values using contains. For more clarity, this is the actual rule:
import java.util.Set;
global java.util.Map lookupValues;
dialect "java"
rule "ruleName"
when
$fact : MyFact($systematic : systematic)
$lookup : Set() from lookupValues["systematic"]
eval($lookup contains $lookup)
then
System.out.println("Error");
end
So, my question ist, whats wrong with the declaration of $lookup? Or is this something, Drools can't handle?
If you've already downloaded Ollama model files but need to re-link them to Ollama (e.g., after reinstalling, moving them, or using a new system), follow these steps:
Linux/macOS: ~/.ollama/models Windows: C:\Users\YourUsername.ollama\models
If you've moved or backed up the model files, ensure they are in this directory.
sh Copy Edit ollama show <model_name>
If it doesn't find the model, you may need to set the correct directory.
Windows (Command Prompt): cmd Copy Edit mklink /D C:\Users\YourUsername.ollama\models "D:\path\to\your\models"
sh Copy Edit ollama pull <model_name>
If the model is already in the directory, this should detect and use it without re-downloading. If necessary, manually rename the model files to match the expected names.
After this, you should be able to use your models without downloading them again. Let me know if you need further details! 🚀
Just use the subtotal function to do the job. This function considers all your filters. =Subtotal(9, [your range]).
The first parameter is the function code for Sum function, you can find the list all function codes here.
BTW, the corresponding function in Microsoft Excel is Aggregate function.
im getting the same problem, could you let me know how you overcame this issue please
Shop best quality sneakers for women and heels online in Pakistan from Ndure. Shop from a wide range of colours and styles, available exclusively at Ndure. Ndure Casual Shoes and Sneakers for girls are made from best quality materials, with soft sole.
do self content center may be it work
C++ List is a linked list made by nodes.
C# List is array and not a node based linkedList. Under the hood , there is an array which is named as List and it has a lot more methods to act on the array. For node-based linked list, C# has seperate data structure named Linked list.
So don't get confused with the names.
Once the county_boudaries are lines instead of polygons, you should get the distance you want to have.
Use county_boundary = county_boundary.boundary.
I found this on the Pythonanywhere forums: https://www.pythonanywhere.com/forums/topic/13776/#id_post_105423
This should resolve the issue
#!pip install deepface from deepface import DeepFace backends = ['ssd', 'mtcnn'] detected_face = DeepFace.detectFace("Phone/DCIM/Screenshots/Screenshot_2025-02-24-12-36-52-15_99c0 4817c0de5652397fc8b56c3b3817.jpg", detector_backend = backends[0])
Can you please share meta-tag
< meta http-equiv="Content-Security-Policy" content="script-src 'self' http://localhost:3000; object-src 'none';">
Add If anything missed for your local dev.
You may also use the code below to remove the splash.
TextButton.styleFrom(
splashFactory: NoSplash.splashFactory,
overlayColor: Colors.transparent,
)
It's very likely related to internal timers at the OS. The OS will create a different object for the activation flow, and the 'old' object's callback won't be called. This is more of a guess, but I had a similar problem with such a behavior in another component.
As the error says, you need the latest version of the Kotlin Gradle Plugin.
Fixing the Kotlin Gradle Plugin Version Error
Update Kotlin Version
Open your root build.gradle file.
Upgrade ext.kotlin_version to the latest (e.g., 2.1.10):
ext.kotlin_version = '2.1.10' //as of 24/2/2025
Clean and Reset Gradle
Run:
flutter clean
Delete the android/.gradle folder.
Update Gradle Version
Open android/gradle/wrapper/gradle-wrapper.properties.
Update distributionUrl to a compatible version (e.g., from 5.6.2 to 6.1.1):
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
Rebuild Your Project
Run:
flutter pub get
flutter run
You can also go through these stackoverflow answers for more details.
Update:
I successfully debugged!
The error occurred because the version of pip I was using was too old, it was not compatible with skimpy. After !pip install --upgrade pip, I successfully installed pip-25.0.1, and it worked well for installing skimpy.
Just in case someone is looking answer for AWS SDK for Java, you can solve it by adding chunkedEncodingEnabled(false) to your S3Configuration.
S3Configuration class description
S3Client.builder().serviceConfiguration(S3Configuration.builder().chunkedEncodingEnabled(false).build()).build();
Have a look at this, the plugin that does exactly what you want.
So have you fixed it? Going through same problem.
As you can see in the documentation: GitHub Repo, Service Bus emulator isn't compatible with the community owned open source Service Bus Explorer...
I have the same problem as you. There is the possibility of using our own SQL server (and not using the default SQL Edge version, which will be deprecated in September 2025). I'm looking into the possibility of performing SQL queries directly in order to retrieve messages, but I haven't succeeded yet...
You could check the packagename of the calling activity, but a full solution exists only with a cooperating calling activity, using one of the following alternatives:
To match users for social meetups based on shared interests and availability, consider the following approach:
Profile Creation: Users fill out profiles with their interests, hobbies, preferred activities, and available times for meetups.
Interest Matching: Use algorithms to match users based on overlapping interests, such as hobbies, favorite sports, or specific activities they enjoy.
Availability Matching: Integrate a scheduling tool that allows users to input their preferred times for meetups, ensuring compatibility with others' availability.
Suggestions & Notifications: The system can suggest potential meetup matches, notify users of possible connections, and allow them to choose when and where to meet based on mutual availability.
It doesn't work for me. The "Format on save" is already disabled in the first place
First, I disabled all installed extensions and then enabled them one by one. Ultimately, I discovered that the 'Markdown PDF' extension was causing the issue. I disabled it, and everything is working well now. BTW, I am using macOS.
This may seem really simple, but are you saving the Rmd file after making the changes? Further, note that the function does not count words inside code chunks. I tested the function with a *.rmd file on my machine and it seems to respond appropriately to word additions or deletions.
for those who tried all the solutions above but no luck, try to change the ownership of the installation folder to your account, it should work. I guess this permission things block some features in sql installation.
bro i am facing same problem can you help me
you can also try the ProgIDFromCLSID from pythoncom
https://timgolden.me.uk/pywin32-docs/pythoncom__ProgIDFromCLSID_meth.html
this raise an exception if the object is not found
>>> pythoncom.ProgIDFromCLSID("Inventor.NoApplication")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
pywintypes.com_error: (-2147221005, 'Invalid class string', None, None)
>>> pythoncom.ProgIDFromCLSID("Inventor.Application")
u'Inventor.Application.1'
Well, the licensing issue is clear, in our case it is all about security. Rebuilding and self signing would be definitely an option, but if there are other dependencies to packages in, this gets a bit cumbersome. In addition, rebuilding is sometimes not that easy (as it should be?) as I did not manage to rebuild SharpDx as an example. There are sometimes not so well documented dependencies to whatever toolsets and special gimmicks needed.
Finally, I found the root causes:
I use the command Get-WmiObject -Namespace "root\acim" -ClassName "HwSetting" | Get-Member to find that the registered method is SetHw(System.String name, System.String value), but it doesn't match my setting of SetHw() which does not have any arguments. So I re-compiled mof by mofcomp.exe.
We must implement GetObjectAsync() when we use a command like this (Get-WmiObject -Namespace "root\acim" -ClassName "MyHwSetting").MySetHw()
This is the solution
a = a + b
b = a - b
a = a - b
I think you are facing this problem just because of your default styling inside your style.css like:
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
In Tailwind v4 you need to use this default styling inside @layer base{ }. Put all the default styles inside the Tailwind base layer.
@layer base {
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
}
it's still not supported, but you can vote for the feature being implemented here: https://issuetracker.google.com/issues/274631403?pli=1
I succeeded fixed this problem. I created a new project with Vite and copy all file in my new project. Note this cause the _src paths do not find correctly. you should change _src paths to new path.
I know that , this package is so stuck for now. You can use this package: the npm package name: https://www.npmjs.com/package/@s77rt/react-native-contacts
Can you please share the full implementation of the createBook function with the latest data so that I can analyze the error and provide you with a solution?
nvidia-smi Failed to initialize NVML: GPU access blocked by the operating system I had all cuda and drivers installed . dmesg show a red tip: PCI: Fatal: No config space access function found Is it the problem?
plugin:runtime-error-plugin] Cannot read properties of undefined (reading 'replit') Click outside, press Esc key, or fix the code to dismiss. You can also disable this overlay by setting server.hmr.overlay to false in vite.config.js.
This is a solid guide for setting up web scraping with AWS Lambda and Docker! A few areas to consider for improvement or optimization:
Reducing Image Size
The base image public.ecr.aws/lambda/python:3.9 is a good choice, but including Chrome and its dependencies might increase the size significantly. You can explore slim versions or use Lambda base images with Chromium preinstalled to keep it lightweight. Lambda Execution Timeout
Web scraping tasks, especially with Selenium, can be slow. Ensure your Lambda function has an appropriate timeout (--timeout 30 or higher) when creating it. Handling Dynamic Content
Some pages use anti-bot measures. Consider adding randomized user agents, proxies, or request throttling. Headless Chrome Pre-bundled Options
Instead of installing Chrome via webdriver-manager, you could use a pre-compiled headless Chromium binary (e.g., chromium from aws-chrome-lambda). Logging & Error Handling
Use AWS CloudWatch to debug failures: python Copy Edit import logging logger = logging.getLogger() logger.setLevel(logging.INFO) Wrap the driver.get(url) in a try-except block to handle common scraping errors gracefully.
Will it still be secure @rubie. Won't anybody be able to modify the price through the API or frontend ? Just a begineer and was curious about the approach
please help double check that you're signed in to a tenant that has sideloading enabled. Once 'Custom App Upload' is enabled, it may take some time before this setting take effects. Let me know if you have any questions.
It is best not to use bare \n or \r in regex patterns. Instead, use \s* or \s+ with multi-line flags for better compatibility.
const match = new RegExp(
String.raw`#\s*{$name}\s+([\s\S]+?)\s*#\s+osd`,
"gm"
).exec(code);
For detailed explanation, see here
#\s*master\s+([^#]+)#\s+osd may be also possible; see here.
if above method is not working then try this, "e/CP" => this is my directory path in windows (E:\CP)
{
"shell_cmd": "wsl g++ /mnt/e/CP/${file_base_name}.cpp && wsl ./a.out",
"selector": "source.c++, source.cpp",
"file_regex": "^(.*):(\\d+):(\\d+): error: (.*)$"
}
in jest testing
toBe - it will check value and type also like ===
toEqual - it will only compare values, not type like ==
Ex -
tempObj ={success: true};
expect(tempObj).toBe({success: true}} // false
expect(tempObj).toEqual({success: true}} // true
Click for more information. dastyarkomak https://B2n.ir/e50160
The issue is because in the NVM version 1.2.2 the temporary directory is refered as "tmp" while the old one was "temp", so this issue will be fixed in NVM v1.2.3.
Till the new version is available, you can use the older version of NVM (v1.1.12) Link to download, from this version you can install node 14.21.3.
Thank you
Unless of course you add a new different app-id
Just use some delay so that google maps and deallocate some memory to have memory for new marker
DispatchQueue.main.asyncAfter(deadline: .now()+0.1, execute: {
// Assign your map view to marker
marker.map = self.mapView })
I have the same issue did you could solve it?
I am new to the concept of two wheeled vehicles, so I started with a Kawasaki H2.....
Starting with your client, how do you know your kill()s are working?
If the mysterious check_arguments() returned garbage, how would you know?
Does the mysterious init_signal() actually work? How do you know?
Also, in your server, how do you know your kill()s are working?
Those are implementation basics; and you need to cross them out.
Next is, are you working on a flawed concept?
You are relying on signal queuing maintaining time order, which is an assumption worth examination. I think it is fair game for signals to be prioritized by identity; so if there are 4 queued signals for SIGUSR1 and 5 for SIGUSR2, the order you might observe them could be: 1,1,1,1,2,2,2,2,2 or 1,2,1,2,1,2,1,2,2 or 1,1,2,2,1,1,2,2,2
Even if you work out the strategy used by your particular implementation (linux a.b.c.d) might change it on a whim.
The H2 is a notoriously difficult bike to ride; yet was quite popular.
Asynchronous communication is notoriously difficult. Understanding why is an important exercise.
Late to the party, but this line did it for me:
int64_t pts = av_rescale_q(_frameCount, codecContext->time_base, videoStream->time_base);
Where _frameCount increases every recording frame.
"Check this answer. It solves the problem when adding a watch app:"
You can integrate a real estate listing API to fetch and display property listings dynamically on your site. Here are some options to consider:
Zillow API (for U.S. markets) – Offers property details, price estimates, and more. Realtor.com API – Provides MLS listings and real estate data. Google Places API – Useful for adding neighborhood insights. RapidAPI Real Estate APIs – Various APIs for global and regional listings. Custom MLS Integration – If you're targeting a specific location, check if your local MLS provides API access. For implementation, you’ll need backend development (Node.js, Python, PHP) to fetch and display data. You can also use WordPress plugins if you're using WordPress
I forgot about how I run the scaffold command on my backend, it had the instance name included on it (mentioned by @AlwaysLearning). I just had to run the scaffold command again with the correct values to fix it, which is this:
dotnet ef dbcontext scaffold "Server=localhost,1433;Database=CanteenDB;User Id=sa;Password=******;TrustServerCertificate=True;" Microsoft.EntityFrameworkCore.SqlServer -o Entities --force
Files that we are adding/copying to containers will not persist and will be lost when the container/pod rollout.
Therefore, you need to persist the jdbc connector jar files by using config maps or using persistent Volumes.
For further info please refer to [1].
' _words is a string array that we'll sort alphabetically Dim _words = New String() { "the", "quick", "brown", "fox", "jumps" }
Dim morewords = New String() { "over", "the", "lazy", "dog" }
Dim query = From word In _words Order By word.Length Select word
Can you try by adding correct permission to the user from admin console first?
admin/manage/identity/ is the correct permission.
Are you sure you are setting up the branch name correctly, as i take the same 2 files as they are and added them to a test repo i have and just changed the branche name to master as this is my branch name and it worked